10 lines
145 B
CSS
10 lines
145 B
CSS
/* Generic – Reset */
|
||
|
||
*, *::before, *::after {
|
||
box-sizing: border-box;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
|
||
[hidden] { display: none !important; }
|