mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
13 lines
251 B
SCSS
13 lines
251 B
SCSS
html {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.field {
|
|
input.text,
|
|
textarea,
|
|
.TreeDropdownField {
|
|
// Left/right padding conflicts with 100% width on the element unless box-sizing is respected, so disable padding for IE
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
} |