Frontend/src/index.css

16 lines
231 B
CSS
Raw Normal View History

2021-02-15 12:05:43 +01:00
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
* {
box-sizing: border-box;
font-family: "Roboto", sans-serif;
}
body {
margin: 0;
2021-02-15 12:05:43 +01:00
padding: 0;
}
2021-02-15 12:05:43 +01:00
.mr-20 {
margin-right: 20px !important;
}