25 lines
347 B
CSS
25 lines
347 B
CSS
.no-style {
|
|
background: none;
|
|
border: none;
|
|
padding: 0;
|
|
font: inherit;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.no-style:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.grid-4 {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 1rem;
|
|
}
|
|
|
|
@media (max-width: 992px) {
|
|
.grid-4 {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|