correction de l'affichage des galeries sur mobile (sans péter l'affichage pc)
This commit is contained in:
parent
04acbfcc34
commit
203f4390bf
41
styles.css
41
styles.css
@ -734,13 +734,48 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.gallery-item {
|
.gallery-item {
|
||||||
width: calc((100% - (2 * 20px)) / 3);
|
min-height: unset;
|
||||||
|
width: 100%;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallery-item img {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
object-fit: contain;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gallery-grid {
|
.gallery-grid {
|
||||||
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
|
display: flex;
|
||||||
gap: 0.5rem;
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1.5rem;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
|
max-width: 500px;
|
||||||
|
margin: 0 auto;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallery-item-wide,
|
||||||
|
.gallery-item-tall {
|
||||||
|
grid-column: 1;
|
||||||
|
grid-row: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallery-item-top {
|
||||||
|
border: none;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallery-item-top::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
border: 4px solid #2196f3;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
pointer-events: none;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gallery-header {
|
.gallery-header {
|
||||||
|
@ -1 +1 @@
|
|||||||
1.0.2
|
1.0.4
|
Loading…
x
Reference in New Issue
Block a user