mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-10 00:46:15 +01:00
14 lines
233 B
SCSS
14 lines
233 B
SCSS
|
@mixin btn {
|
||
|
width: 4rem;
|
||
|
height: 4rem;
|
||
|
display: inline-flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
padding: 0;
|
||
|
background: none;
|
||
|
border: none;
|
||
|
&:active {
|
||
|
color: currentColor;
|
||
|
box-shadow: none;
|
||
|
}
|
||
|
}
|