mirror of https://github.com/zulip/zulip.git
css: Use SCSS nesting for `.float`.
This commit is contained in:
parent
8317bde30f
commit
b29b7b8da1
|
@ -89,16 +89,18 @@ ol a:hover {
|
|||
align-items: center;
|
||||
}
|
||||
|
||||
.float.left {
|
||||
float: left;
|
||||
}
|
||||
.float {
|
||||
&.left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.float.right {
|
||||
float: right;
|
||||
}
|
||||
&.right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.float.clear {
|
||||
clear: both;
|
||||
&.clear {
|
||||
clear: both;
|
||||
}
|
||||
}
|
||||
|
||||
.small {
|
||||
|
|
Loading…
Reference in New Issue