Skip to content

Commit 5106a08

Browse files
authored
Merge pull request #1941 from AbhayaShankar/abhaya
overflow bug in Learn Web Development fixed
2 parents 7bd2da2 + 612dec5 commit 5106a08

1 file changed

Lines changed: 20 additions & 9 deletions

File tree

assets/css/styles.css

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ i#menuClose {
480480
border: 2px solid #228abb;
481481
padding: 5px 25px;
482482
border-radius: 3px;
483-
font-size: 16px;
483+
font-size: 12px;
484484
transition: 0.25s all ease-in-out;
485485
}
486486
.dualSectionsText a:hover {
@@ -1077,13 +1077,12 @@ div.searchProject::after {
10771077
border-radius: 50%;
10781078
transition: 0.5s;
10791079
}
1080-
@media (min-width: 880px){
1081-
#embedForMobile{
1082-
display: none;
1083-
}
1080+
@media (min-width: 880px) {
1081+
#embedForMobile {
1082+
display: none;
1083+
}
10841084
}
10851085
@media (max-width: 880px) {
1086-
10871086
#embedForMobile {
10881087
margin-bottom: 10px;
10891088
}
@@ -1092,16 +1091,16 @@ div.searchProject::after {
10921091
max-width: 80vw;
10931092
}
10941093

1095-
.buttonCenter{
1094+
.buttonCenter {
10961095
max-width: 100%;
10971096
display: flex;
10981097
justify-content: center;
10991098
flex-direction: column;
11001099
align-items: center;
11011100
}
11021101

1103-
.commanBtn{
1104-
margin: 10px 0 !important;
1102+
.commanBtn {
1103+
margin: 10px 0 !important;
11051104
}
11061105

11071106
#embedForPc {
@@ -1139,3 +1138,15 @@ div.searchProject::after {
11391138
font-size: 15px;
11401139
}
11411140
}
1141+
1142+
@media (min-width: 402px) {
1143+
.dualSectionsText a {
1144+
font-size: 16px;
1145+
}
1146+
}
1147+
1148+
@media (min-width: 379px) and (max-width: 402px) {
1149+
.dualSectionsText a {
1150+
font-size: 14px;
1151+
}
1152+
}

0 commit comments

Comments
 (0)