mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
19 lines
388 B
SCSS
19 lines
388 B
SCSS
![]() |
// Limit the width of object edit forms
|
||
|
form.object-edit {
|
||
|
margin: auto;
|
||
|
max-width: 800px;
|
||
|
}
|
||
|
|
||
|
// Set bond font & append an asterisk to labels for required fields
|
||
|
.col-form-label.required {
|
||
|
font-weight: bold;
|
||
|
&:after {
|
||
|
position: absolute;
|
||
|
display: inline-block;
|
||
|
margin-left: 0;
|
||
|
font-family: 'Material Design Icons';
|
||
|
font-size: 8px;
|
||
|
content: '\f06C4';
|
||
|
}
|
||
|
}
|