It works?

This commit is contained in:
2024-06-04 15:43:37 +02:00
parent d85587fdd5
commit a8123be603
8 changed files with 75 additions and 7 deletions

View File

@@ -4,6 +4,26 @@
box-sizing: border-box;
}
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #333;
color: #fff;
}
.activ{
margin-top: 1rem;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.item{
border: red solid 2px;
display: flex;
flex-direction: column;
padding: 1rem;
margin: .5rem;
gap: 10px;
background: #222222cc;
}