mirror of
https://github.com/penpot/penpot.git
synced 2025-01-30 19:00:10 -05:00
36 lines
511 B
SCSS
36 lines
511 B
SCSS
.drawing-tools {
|
|
max-height: 115px;
|
|
}
|
|
|
|
.tool-btn {
|
|
align-items: center;
|
|
background-color: $secondary-ui-bg;
|
|
border-radius: 3px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
flex-shrink: 0;
|
|
height: 54px;
|
|
justify-content: center;
|
|
margin: $medium 0 0 $medium;
|
|
width: 54px;
|
|
|
|
svg {
|
|
fill: $dark-ui-icons;
|
|
height: 35px;
|
|
width: 35px;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: $color-white;
|
|
}
|
|
|
|
&.selected {
|
|
background-color: $main-ui-color;
|
|
|
|
svg {
|
|
fill: $color-white;
|
|
}
|
|
|
|
}
|
|
|
|
}
|