0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-03 04:49:03 -05:00
penpot/frontend/resources/styles/main/partials/sidebar-tools.scss

41 lines
746 B
SCSS
Raw Normal View History

2016-03-01 20:39:13 +02:00
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
// Copyright (c) KALEIDOS INC
2016-03-01 20:39:13 +02:00
2016-02-17 08:56:02 +01:00
.drawing-tools {
2016-02-27 13:48:46 +02:00
max-height: 185px;
2016-02-17 08:56:02 +01:00
}
2016-02-14 20:37:01 +01:00
.tool-btn {
align-items: center;
2020-03-03 13:14:37 +01:00
background-color: $color-gray-60;
border-radius: $br4;
2016-02-14 20:37:01 +01:00
cursor: pointer;
display: flex;
flex-shrink: 0;
height: 54px;
justify-content: center;
2021-10-05 10:16:44 +02:00
margin: $size-4 0 0 $size-4;
2016-02-14 20:37:01 +01:00
width: 54px;
svg {
2020-03-03 13:14:37 +01:00
fill: $color-gray-20;
2016-02-14 20:37:01 +01:00
height: 35px;
width: 35px;
}
&:hover {
2020-03-03 13:14:37 +01:00
background-color: $color-gray-10;
2016-02-14 20:37:01 +01:00
}
&.selected {
2020-03-03 13:14:37 +01:00
background-color: $color-primary;
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
}
}
}