13 lines
205 B
CSS
13 lines
205 B
CSS
|
|
.container {
|
|
flex-wrap: nowrap;
|
|
border-bottom: solid blue 3px;
|
|
margin-bottom: 3px;
|
|
cursor: pointer;
|
|
|
|
@media (max-width: 48em) {
|
|
width: 80vw;
|
|
margin-right: 8vw;
|
|
}
|
|
}
|