0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-28 09:30:07 -05:00
penpot/resources/styles/partials/sidebar-tools.scss

44 lines
850 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) 2015-2016 Andrey Antukh <niwi@niwi.nz>
// Copyright (c) 2015-2016 Juan de la Cruz <delacruzgarciajuan@gmail.com>
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;
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-19 19:41:33 +01:00
fill: $intense-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
}
}
}