mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 05:44:24 +00:00
Introduced a new SCSS file to handle hover effects on rows and added the ability to remove bottom margins with a "slim" class. Updated various twig templates to utilize these new styles for better visual feedback and alignment.
12 lines
185 B
SCSS
12 lines
185 B
SCSS
|
|
|
|
.row.row-hover {
|
|
padding: 0.3rem;
|
|
|
|
&:hover {
|
|
background-color: $gray-100;
|
|
border-top: 1px solid $gray-400;
|
|
border-bottom: 1px solid $gray-400;
|
|
}
|
|
}
|