Skip to content
Snippets Groups Projects
Commit 604a067c authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Fixed Padding before first result. Lowert Padding in Foki Box

parent 4aa834bf
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
......@@ -424,7 +424,7 @@ a {
-webkit-box-shadow: 0px 1px 1.5px 0px rgba(0, 0, 0, 0.12), 1px 0px 1px 0px rgba(0, 0, 0, 0.24);
box-shadow: 0px 1px 1.5px 0px rgba(0, 0, 0, 0.12), 1px 0px 1px 0px rgba(0, 0, 0, 0.24);
overflow-x: visible;
padding: 10px;
padding: 8px;
@media (max-width: 700px) {
overflow-x: auto;
}
......
......@@ -5,6 +5,11 @@
@result-description-color: @color-black;
@result-image-border-color: @color-almost-white;
.result {
// Remove the margin from the first result because it already has margin from the grid ruleset
&:nth-child(1) {
margin-top: 0;
}
.card;
margin: @padding-small-default 0px;
padding: 8px 15px 5px 15px;
......
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