0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-30 19:00:10 -05:00
penpot/resources/public/styles/partials/settings-bar-tools.scss
2016-02-17 09:59:18 +02:00

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;
}
}
}