8 lines
105 B
CSS
8 lines
105 B
CSS
/* Generic – Reset */
|
||
|
||
*, *::before, *::after {
|
||
box-sizing: border-box;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|