source: frontend/src/index.css

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 473 bytes
Line 
1@tailwind base;
2@tailwind components;
3@tailwind utilities;
4
5* {
6 margin: 0;
7 padding: 0;
8 box-sizing: border-box;
9}
10
11body {
12 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
13 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
14 sans-serif;
15 -webkit-font-smoothing: antialiased;
16 -moz-osx-font-smoothing: grayscale;
17}
18
19code {
20 font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
21 monospace;
22}
Note: See TracBrowser for help on using the repository browser.