36 lines
596 B
SCSS
36 lines
596 B
SCSS
|
main {
|
||
|
@include outer-container;
|
||
|
.saveadd {
|
||
|
@include span-columns(12);
|
||
|
}
|
||
|
.savecancel {
|
||
|
@include span-columns(12);
|
||
|
}
|
||
|
.error {
|
||
|
background-color: transparent;
|
||
|
color: $accent-color-1;
|
||
|
}
|
||
|
label.error {
|
||
|
text-align: right;
|
||
|
padding-top: 0;
|
||
|
font-size: 0.8rem;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media only screen and (min-width: $tablet) {
|
||
|
main {
|
||
|
@include outer-container;
|
||
|
.viewall {
|
||
|
text-align: right;
|
||
|
}
|
||
|
.saveadd {
|
||
|
@include span-columns(6);
|
||
|
}
|
||
|
.savecancel {
|
||
|
@include span-columns(6);
|
||
|
@include omega();
|
||
|
text-align: right;
|
||
|
}
|
||
|
}
|
||
|
}
|