fix advisories
This commit is contained in:
parent
590cb6a9ef
commit
771d9a1bf1
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue