res fix
This commit is contained in:
parent
6e0f25c4ff
commit
2a53a02660
1 changed files with 3 additions and 2 deletions
|
@ -1,20 +1,21 @@
|
||||||
body {
|
body {
|
||||||
background-color: black;
|
background-color: black;
|
||||||
color: white;
|
color: white;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.grid-container {
|
.grid-container {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(8, 1fr); /* Create 8 columns of equal width */
|
grid-template-columns: repeat(8, 1fr); /* Create 8 columns of equal width */
|
||||||
gap: 10px; /* Adjust the gap between grid items */
|
gap: 10px; /* Adjust the gap between grid items */
|
||||||
width: 100vw; /* Set the width to 100% of the viewport width */
|
width: 100%; /* Set the width to 100% of the viewport width */
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.friend img {
|
.friend img {
|
||||||
transition: transform 0.3s ease;
|
transition: transform 0.3s ease;
|
||||||
max-width: 150%;
|
max-width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue