1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-26 07:39:04 +02:00
keeweb/app/styles/areas/_grp.scss

49 lines
897 B
SCSS
Raw Normal View History

2015-10-31 20:09:32 +01:00
.grp {
2017-04-16 18:37:16 +02:00
flex: 1;
2019-08-16 23:05:39 +02:00
display: flex;
align-items: stretch;
flex-direction: column;
justify-content: flex-start;
@include scrollbar-on-hover;
width: 100%;
user-select: none;
overflow: hidden;
position: relative;
2015-10-31 20:09:32 +01:00
2019-08-16 23:05:39 +02:00
> .scroller {
flex: 1;
overflow-x: hidden;
2015-11-21 21:14:21 +01:00
}
2015-10-31 20:09:32 +01:00
2019-09-08 13:43:55 +02:00
&__content,
&__buttons {
2019-09-08 11:46:03 +02:00
padding: $base-padding;
}
2019-08-16 23:05:39 +02:00
&__icon {
display: block;
font-size: $large-header-font-size;
padding: $base-padding-px;
align-self: flex-start;
@include area-selectable();
&--image {
width: 28px;
height: 28px;
}
}
2016-08-14 18:18:51 +02:00
2019-08-16 23:05:39 +02:00
&__icon-wrap {
display: flex;
}
&__buttons {
display: flex;
flex-direction: row;
margin-top: $base-padding-v;
2015-10-31 20:09:32 +01:00
2019-08-16 23:05:39 +02:00
&-trash {
@include icon-btn($error: true);
}
2015-10-31 20:09:32 +01:00
}
}