mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
accompanyingCourse/summary * alert for people not in household for each accompanying course; * style for action in alert * form to members editor
30 lines
443 B
SCSS
30 lines
443 B
SCSS
|
|
div.alert.alert-with-actions {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
ul.record_actions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0;
|
|
margin: 0;
|
|
|
|
li:nth-child(1n+2) {
|
|
margin-top: 0.5rem;
|
|
}
|
|
|
|
li {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 1050px) {
|
|
flex-direction: column;
|
|
|
|
ul.record_actions {
|
|
margin-top: 1rem;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|