mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-14 11:23:19 +00:00
31 lines
634 B
SCSS
31 lines
634 B
SCSS
////
|
|
/// SOGo
|
|
/// Version: #{$Version}
|
|
/// Module: autoScrollList
|
|
/// Main definitions for autoScrollList
|
|
////
|
|
@import 'extends';
|
|
|
|
// The only selector for vs-repeat lists is this id, we use attributes selector to
|
|
// avoid overspecifying
|
|
// todo: create new classes and refactor templates markup
|
|
[id='messagesList'] {
|
|
md-item-content {
|
|
padding: $layout-gutter-width;
|
|
}
|
|
}
|
|
.sg-tile-content {
|
|
padding: 0 0 0 $layout-gutter-width;
|
|
.sg-md-subhead-multi {
|
|
margin: 0;
|
|
}
|
|
.sg-md-body-multi {
|
|
margin: 0;
|
|
}
|
|
a {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
}
|
|
} |