Skip to content
Snippets Groups Projects
Commit ce73bbfb authored by Julian's avatar Julian
Browse files

Fix margin bug on horizontal scrolling cards

parent 7aa0d336
No related branches found
No related tags found
1 merge request!236Resolve "Improve week view for mobile devices (size s)"
Pipeline #45878 canceled
......@@ -20,7 +20,7 @@
}
.horizontal-scroll-container.vertical .horizontal-scroll-card {
margin-left: 0;
margin-inline: 0;
}
dl {
......@@ -50,7 +50,15 @@ dd {
}
.horizontal-scroll-card:first-of-type {
margin-left: .4rem;
margin-inline-start: .4rem;
-moz-margin-start: .4rem;
-webkit-margin-start: .4rem;
}
.horizontal-scroll-card:last-of-type {
margin-inline-end: .4rem;
-moz-margin-end: .4rem;
-webkit-margin-end: .4rem;
}
.horizontal-scroll-card .card-action {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment