Presets all work now with computed values

This commit is contained in:
MattIPv4
2020-04-28 17:13:44 +01:00
parent 6decf98b1d
commit 27ad3cbea2
4 changed files with 150 additions and 9 deletions

View File

@@ -16,3 +16,51 @@ limitations under the License.
$header: #0071fe;
@import "~do-bulma/src/style";
.do-bulma {
.tabs {
ul {
li {
&.is-before {
a {
color: mix($dark-grey, $primary);
&::after {
background: rgba($primary, .5);
}
&:hover {
color: $dark-blue;
&::after {
background: $dark-blue;
}
}
}
}
}
}
}
.panel {
margin-top: 0;
padding: 2rem 0;
.container {
padding: 0 1.5rem;
}
.tabs {
ul {
padding: 0 1rem;
}
}
}
.buttons-group {
align-items: center;
display: flex;
flex-direction: row;
justify-content: space-between;
}
}