Revert modifier class notation
This commit is contained in:
parent
37acb51df4
commit
5f51fe897d
2 changed files with 6 additions and 7 deletions
|
@ -161,22 +161,21 @@
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
//
|
||||
// Modifiers
|
||||
|
||||
&-rt {
|
||||
&-rounded-t {
|
||||
border-top-left-radius: $fallback--panelRadius;
|
||||
border-top-left-radius: var(--panelRadius, $fallback--panelRadius);
|
||||
border-top-right-radius: $fallback--panelRadius;
|
||||
border-top-right-radius: var(--panelRadius, $fallback--panelRadius);
|
||||
}
|
||||
|
||||
&-r {
|
||||
&-rounded {
|
||||
border-radius: $fallback--panelRadius;
|
||||
border-radius: var(--panelRadius, $fallback--panelRadius);
|
||||
}
|
||||
|
||||
&-b {
|
||||
&-bordered {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: $fallback--border;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue