mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-17 19:51:11 +00:00
Add Sass variable to avoid repeating icon size
This commit is contained in:
parent
1614cc9a07
commit
f6cdd27972
1 changed files with 4 additions and 2 deletions
|
|
@ -1,3 +1,5 @@
|
|||
$icon-size: 1em;
|
||||
|
||||
.TooltipEntity {
|
||||
cursor: pointer;
|
||||
|
||||
|
|
@ -8,7 +10,7 @@
|
|||
&__icon {
|
||||
color: $color-teal;
|
||||
margin-right: 0.2em;
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
width: $icon-size;
|
||||
height: $icon-size;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue