forked from M3-Academy/desafio-react-e-typescript
feature/challenge #1
@ -4,6 +4,11 @@
|
||||
width: calc(100% - 200px);
|
||||
padding: 0 100px;
|
||||
|
||||
@media #{$mq-tablet}, #{$mq-mobile} {
|
||||
padding: 0 16px;
|
||||
width: calc(100% - 32px);
|
||||
}
|
||||
|
||||
&__title {
|
||||
font-family: $font-family;
|
||||
font-style: normal;
|
||||
@ -15,6 +20,11 @@
|
||||
color: $color-black2;
|
||||
text-align: center;
|
||||
margin-bottom: 80px;
|
||||
|
||||
@media #{$mq-desktop}, #{$mq-tablet}, #{$mq-mobile} {
|
||||
font-size: 24px;
|
||||
line-height: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
&__group {
|
||||
|
@ -10,6 +10,10 @@
|
||||
width: 28%;
|
||||
}
|
||||
|
||||
@media #{$mq-tablet}, #{$mq-mobile} {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
&__link{
|
||||
text-decoration: none;
|
||||
font-family: $font-family;
|
||||
@ -21,7 +25,7 @@
|
||||
width: calc(100% - 32px);
|
||||
padding: 10px 16px;
|
||||
|
||||
@media #{$mq-desktop}{
|
||||
@media #{$mq-desktop}, #{$mq-tablet}, #{$mq-mobile} {
|
||||
font-size: 16px;
|
||||
line-height: 19px;
|
||||
}
|
||||
|
@ -1,5 +1,11 @@
|
||||
@import '../../variaveis';
|
||||
|
||||
.submenu {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: flex-start;
|
||||
|
||||
@media #{$mq-tablet}, #{$mq-mobile} {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
@ -5,6 +5,12 @@
|
||||
padding-left: 30px;
|
||||
border-left: 1px solid $color-black;
|
||||
|
||||
@media #{$mq-tablet}, #{$mq-mobile} {
|
||||
width: 100%;
|
||||
border: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
&__title {
|
||||
font-family: $font-family;
|
||||
font-style: normal;
|
||||
@ -13,6 +19,17 @@
|
||||
line-height: 56px;
|
||||
color: $color-black2;
|
||||
margin-bottom: 12px;
|
||||
|
||||
@media #{$mq-desktop}, #{$mq-tablet}, #{$mq-mobile} {
|
||||
font-size: 24px;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
@media #{$mq-tablet}, #{$mq-mobile}{
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
&__paragrafo {
|
||||
|
Loading…
Reference in New Issue
Block a user