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-14 20:37:09 +01:00

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