css: Use SCSS nesting in portico-signin.scss for button.

This commit is contained in:
majordwarf 2020-03-11 19:24:07 +05:30 committed by Tim Abbott
parent 8d92c7277c
commit 3b5fa831ac

View File

@ -302,22 +302,22 @@ html {
border-radius: 4px;
transition: all 0.3s ease;
}
.new-style button:hover {
background-color: hsl(213, 33%, 31%);
}
&:hover {
background-color: hsl(213, 33%, 31%);
}
.new-style button:active {
background-color: hsl(214, 28%, 16%);
}
&:active {
background-color: hsl(214, 28%, 16%);
}
.new-style button:focus {
outline: 3px solid hsl(213, 81%, 79%);
}
&:focus {
outline: 3px solid hsl(213, 81%, 79%);
}
.new-style button.full-width {
width: 100%;
&.full-width {
width: 100%;
}
}
.new-style .alert:not(.alert-info) {