fix advisories

This commit is contained in:
Hristo Nedelkov 2024-01-22 15:45:57 +02:00
parent 590cb6a9ef
commit 771d9a1bf1
2 changed files with 25 additions and 14 deletions

View File

@ -1,14 +0,0 @@
.advisories-container {
padding: 30px;
justify-content: space-between;
min-height: 65vh;
width: 100%;
display: grid;
}
@media screen and (max-width: 1000px) {
.advisories-container {
flex-wrap: wrap;
margin: 30;
}
}

View File

@ -0,0 +1,25 @@
.advisories-container {
display: flex;
padding: 30px;
justify-content: space-between;
width: auto;
}
.advisories-nav {
display: flex;
flex-direction: column;
gap: 5px;
}
@media screen and (max-width: 780px) {
.advisories-container {
flex-direction: column;
align-items: start;
gap: 20px;
}
.advisories-nav {
width: 100%;
gap: 10px;
flex-direction: row;
flex-wrap: wrap;
justify-content: start;
}
}