Skip to content

Commit 20cca94

Browse files
committed
chore: add css for gatekeeper
1 parent b5600e9 commit 20cca94

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed

src/css/base.scss

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5122,3 +5122,27 @@ details[open] {
51225122
}
51235123
}
51245124
}
5125+
5126+
.dc__place-self-center {
5127+
place-self: center;
5128+
}
5129+
5130+
.twelve-col-layout {
5131+
grid-template-columns: repeat(12, 1fr);
5132+
}
5133+
5134+
.dc__mxw-50-per {
5135+
max-width: 50%;
5136+
}
5137+
5138+
.mh-100vh {
5139+
min-height: 100vh;
5140+
}
5141+
5142+
.mh-170 {
5143+
min-height: 170px;
5144+
}
5145+
5146+
.mw-76 {
5147+
min-width: 76px;
5148+
}

src/css/formulae.scss

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -593,3 +593,15 @@ $color-suffix: 00;
593593
.steps-with-trail--normal {
594594
@include steps-with-trail(20px, 24px, 16px, 40px)
595595
}
596+
597+
@for $i from 1 through 12 {
598+
@for $j from 1 through 12 {
599+
.grid-col-#{$i}-#{$j} {
600+
grid-column: #{$i} / span #{$j};
601+
}
602+
}
603+
604+
.grid-col-#{$i}--end {
605+
grid-column: #{$i} / -1;
606+
}
607+
}

src/css/themeUtils.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,10 @@
159159
&--bottom {
160160
border-bottom: 1px solid var(--border-secondary);
161161
}
162+
163+
&--left {
164+
border-left: 1px solid var(--border-secondary);
165+
}
162166
}
163167

164168
&__secondary-translucent {
@@ -214,4 +218,4 @@
214218
min-height: 16px;
215219
background-color: var(--divider-secondary-translucent);
216220
}
217-
}
221+
}

0 commit comments

Comments
 (0)