1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-08 23:46:14 +01:00
fab-manager/app/frontend/src/stylesheets/modules/dashboard/reservations/credits-panel.scss

32 lines
661 B
SCSS
Raw Normal View History

.credits-panel {
2023-01-04 18:00:56 +01:00
display: flex;
flex-direction: column;
gap: 1.6rem;
&.no-header > * { margin: 0; }
.title { @include text-base(600); }
2023-01-04 18:00:56 +01:00
.credits-list {
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 0.8rem;
2023-01-04 18:00:56 +01:00
&-item {
padding: 1.6rem;
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 1.6rem 2.4rem;
background-color: var(--gray-soft-lightest);
border-radius: var(--border-radius);
.title { @include text-base(600); }
p { margin: 0; }
2023-01-04 18:00:56 +01:00
@media (min-width: 640px) {
flex-direction: row;
}
}
}
}