Skip to content
Snippets Groups Projects
Verified Commit 4f98e5ae authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Fix too wide padding on small screens

parent bfe471d5
No related branches found
No related tags found
No related merge requests found
......@@ -19,8 +19,8 @@
</div>
</div>
<div class="ui section hidden divider"></div>
<div class="ui grid">
<div class="ui row">
<div class="ui stackable one column grid">
<div class="column">
<album-widget :filters="{playable: true, ordering: '-creation_date'}">
<template slot="title"><translate>Recently added</translate></template>
</album-widget>
......
......@@ -143,9 +143,12 @@ body {
}
.ui.stripe.segment,
#footer {
padding: 2em;
padding: 1em;
@include media(">tablet") {
padding: 4em;
padding: 2em;
}
@include media(">desktop") {
padding: 3em;
}
}
......
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