CSS: Introduce main.less
Meant to replace defaults.less and other "default" styling spread to other less files. refs #5543
This commit is contained in:
parent
ae71d91d0d
commit
4f826da6ef
|
@ -0,0 +1,16 @@
|
|||
// Make padding not affect the final computed width of an element
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
*,
|
||||
*:before,
|
||||
*:after {
|
||||
.box-sizing(inherit);
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: @body-bg-color;
|
||||
color: @text-color;
|
||||
font-family: @font-family;
|
||||
font-size: @font-size;
|
||||
}
|
Loading…
Reference in New Issue