mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-14 02:09:44 -04:00
As part of updating the stylesheet, moved `.button-secondary` to the global stylesheet, since this is not related to list entries but instead affects all buttons with that class (this class wlil be removed once all the buttons are using the new macro).
57 lines
906 B
SCSS
57 lines
906 B
SCSS
.input-list {
|
|
|
|
.list-entry {
|
|
vertical-align: middle;
|
|
margin-bottom: 15px;
|
|
position: relative;
|
|
}
|
|
|
|
&__button--remove,
|
|
&__button--add {
|
|
width: auto;
|
|
}
|
|
|
|
&__button--remove {
|
|
display: block;
|
|
margin-bottom: 15px;
|
|
margin-top: 5px;
|
|
position: static;
|
|
overflow: hidden;
|
|
|
|
@include media(tablet) {
|
|
@include inline-block;
|
|
margin: 0 0 0 10px;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 100%;
|
|
}
|
|
}
|
|
|
|
&__button--add {
|
|
margin: 0 0 20px 0;
|
|
}
|
|
|
|
.form-control {
|
|
padding-left: 1.84em;
|
|
width: 100%;
|
|
margin-bottom: 0;
|
|
|
|
@include media(desktop) {
|
|
@include inline-block;
|
|
}
|
|
}
|
|
|
|
.text-box-number-label {
|
|
@include core-19;
|
|
float: left;
|
|
width: 1.6em;
|
|
margin: 6px -1.6em 0 0;
|
|
position: relative;
|
|
left: 10px;
|
|
color: $secondary-text-colour;
|
|
font-weight: bold;
|
|
pointer-events: none;
|
|
}
|
|
|
|
}
|