adding responsive 1

This commit is contained in:
José Conde
2023-09-03 14:40:49 +02:00
parent d1b38f5052
commit 5cb1042668
16 changed files with 322 additions and 85 deletions

View File

@ -19,11 +19,11 @@ import DifferentBox from './DifferentBox.vue';
.different {
color: #fff;
background-color: #000;
padding: 72px 0;
padding: 0 0 72px;
}
h2 {
padding: 0 150px;
padding-bottom: 26px !important;
font-size: 52px;
text-align: center;
}
@ -41,4 +41,14 @@ import DifferentBox from './DifferentBox.vue';
display: flex;
justify-content: space-between;
}
@media only screen and (max-width: 767px) {
h3 {
padding: 0;
}
.boxes {
flex-direction: column;
}
}
</style>