mirror of
https://github.com/penpot/penpot.git
synced 2025-02-05 22:09:06 -05:00
32 lines
459 B
SCSS
32 lines
459 B
SCSS
|
.tool-btn {
|
||
|
align-items: center;
|
||
|
background-color: $color-gray-light;
|
||
|
cursor: pointer;
|
||
|
display: flex;
|
||
|
flex-shrink: 0;
|
||
|
height: 54px;
|
||
|
justify-content: center;
|
||
|
margin: $medium 0 0 $medium;
|
||
|
width: 54px;
|
||
|
|
||
|
svg {
|
||
|
fill: $color-gray-darker;
|
||
|
height: 35px;
|
||
|
width: 35px;
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
background-color: $color-white;
|
||
|
}
|
||
|
|
||
|
&.selected {
|
||
|
background-color: $color-gray-darker;
|
||
|
|
||
|
svg {
|
||
|
fill: $color-primary;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|