Skip to content

Commit b82bd8e

Browse files
authored
Merge pull request #191 from Teradata/fix/devportal-1076
fix(styles): set columns for better layout
2 parents 2c71f44 + 99a665a commit b82bd8e

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

src/components/DevelopersHomepage/styles.module.css

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ a.col {
8181
}
8282

8383
.col {
84-
--ifm-col-width: 50% !important;
84+
--ifm-col-width: 50%;
8585
}
8686

8787
.col2 {
@@ -133,6 +133,8 @@ a.col {
133133

134134
.pad{
135135
padding: 16px 0 8px 0;
136+
min-width: 180px;
137+
max-width: 180px;
136138
}
137139

138140
.dot{
@@ -340,4 +342,11 @@ a.col {
340342
.customBullets li::marker {
341343
color: var(--Primary-Orange, #FF5F02);
342344
font-size: 13px;
343-
}
345+
}
346+
347+
@media screen and (min-width: 996px) and (max-width: 1222px) {
348+
.col {
349+
flex: 0 0 50%;
350+
max-width: 50%;
351+
}
352+
}

0 commit comments

Comments
 (0)