Files
portal/resources/sass/setup/_reset.scss
2020-04-12 08:37:16 +02:00

26 lines
248 B
SCSS
Vendored

// Reset
body {
margin: 0;
}
* {
box-sizing: border-box;
}
@for $i from 1 through 6 {
h#{$i} {
margin: 0;
}
}
ul {
margin-top:0;
margin-bottom: 0;
padding-left: 0;
li {
list-style: none;
}
}