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/sidebar-tools.scss

37 lines
511 B
SCSS
Raw Normal View History

2016-02-17 08:56:02 +01:00
.drawing-tools {
max-height: 115px;
}
2016-02-14 20:37:01 +01:00
.tool-btn {
align-items: center;
2016-02-17 08:56:02 +01:00
background-color: $secondary-ui-bg;
border-radius: 3px;
2016-02-14 20:37:01 +01:00
cursor: pointer;
display: flex;
flex-shrink: 0;
height: 54px;
justify-content: center;
margin: $medium 0 0 $medium;
width: 54px;
svg {
2016-02-17 08:56:02 +01:00
fill: $dark-ui-icons;
2016-02-14 20:37:01 +01:00
height: 35px;
width: 35px;
}
&:hover {
background-color: $color-white;
}
&.selected {
2016-02-17 08:56:02 +01:00
background-color: $main-ui-color;
2016-02-14 20:37:01 +01:00
svg {
2016-02-17 08:56:02 +01:00
fill: $color-white;
2016-02-14 20:37:01 +01:00
}
}
}