notification list, item header integration (test 3 ways)

This commit is contained in:
2022-01-06 18:41:25 +01:00
parent c32b767d9b
commit 442e2a1ede
3 changed files with 128 additions and 2 deletions

View File

@@ -25,6 +25,8 @@
// Chill flex responsive table/block presentation
@import './scss/flex_table';
// Specific templates
@import './scss/notification';
/*
* BASE LAYOUT POSITION

View File

@@ -0,0 +1,37 @@
/*
* Notifications List
*/
div.notification-list {
div.item-bloc {
div.item-row.header {
div.item-col {
&:first-child {
flex-grow: 1;
/// 3
div.wrap-list {
div.wl-col.list {
width: 90%;
}
}
}
&:last-child {
flex-grow: 0;
}
}
ul.small_in_title {
list-style-type: circle;
li {
span.item-key {
display: inline-block;
width: 3em;
}
}
}
}
}
}