Move pixel measurements to rems
This commit is contained in:
parent
1d1aaccc8e
commit
3c7c159e72
1 changed files with 6 additions and 6 deletions
|
@ -26,8 +26,8 @@
|
|||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
width: #{20 / $base-font-size}rem;
|
||||
height: #{20 / $base-font-size}rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -50,8 +50,8 @@
|
|||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
width: #{20 / $base-font-size}rem;
|
||||
height: #{20 / $base-font-size}rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -74,8 +74,8 @@
|
|||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
width: #{20 / $base-font-size}rem;
|
||||
height: #{20 / $base-font-size}rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue