File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 padding : var (--full-page-section-padding , 100px 140px 100px 140px );
66}
77
8+ .colomnar-layout > * {
9+ flex : 1 ;
10+ }
11+
812.colomnar-layout h2 {
913 margin-bottom : var (--benefits-section-heading-margin , 48px );
1014}
1115
12- .colomnar-layout img {
16+ .colomnar-layout img : not ( button img , a img ) {
1317 margin-bottom : var (--benefits-section-image-margin , 64px );
1418}
1519
Original file line number Diff line number Diff line change 44@import url ("pasta/typography.css" );
55@import url ("pasta/navigation.css" );
66@import url ("pasta/button.css" );
7+ @import url ("pasta/form.css" );
78@import url ("pasta/stripes.css" );
89@import url ("components/arrows.css" );
910@import url ("components/marketing-hero.css" );
@@ -41,10 +42,14 @@ body {
4142}
4243
4344.old-way ,
44- .colomnar-layout {
45+ .benefits {
4546 --section-background-color : # 291d50 ;
4647}
4748
49+ .getting-started {
50+ background-color : var (--royal-900 );
51+ }
52+
4853.new-way {
4954 --section-background-color : var (--royal-900 );
5055}
6772 font : var (--p-font );
6873}
6974
75+ .footer {
76+ display : flex;
77+ justify-content : center;
78+ background-color : var (--page-background );
79+ padding : var (--footer-padding ) 0 ;
80+ font-size : 1rem ;
81+ }
82+
83+ .footer span {
84+ color : var (--footer-font-color );
85+ }
86+
7087@media (max-width : 980px ) {
7188 : root {
7289 --hero-gutter : 32px ;
Original file line number Diff line number Diff line change 1+ form {
2+ display : flex;
3+ flex-direction : column;
4+ gap : 32px ;
5+ }
6+
7+ .input-component {
8+ display : flex;
9+ flex-direction : column;
10+ gap : 16px ;
11+ }
12+
13+ /* Because form is flex, button needs to maintain content width */
14+ .button .cta {
15+ width : fit-content;
16+ }
17+
18+ .input-component--label {
19+ display : flex;
20+ justify-content : space-between;
21+ }
22+
23+ .input-component--label label {
24+ font-weight : 700 ;
25+ }
26+
27+ fieldset {
28+ display : flex;
29+ gap : 16px ;
30+ }
31+
32+ .input-component--input {
33+ border : transparent;
34+ border-radius : 4px ;
35+ padding : 16px ;
36+ font-size : 18px ;
37+ line-height : 24px ;
38+ width : 100% ;
39+ flex : 1 ;
40+ }
41+
42+ .input-component ,
43+ fieldset {
44+ width : 100% ;
45+ max-width : 500px ;
46+ }
47+
48+ .form-field ,
49+ .form-fieldset {
50+ display : flex;
51+ align-items : flex-end;
52+ gap : 16px ;
53+ }
54+
55+ .dashboard-form .input-component--input {
56+ /* padding is broken on firefox this is following the power-select padding */
57+ padding : 0 8px ;
58+ background : var (--input-background-color );
59+ height : 40px ;
60+ display : flex;
61+ align-items : center;
62+ color : white;
63+ border : 1px solid var (--input-border-color );
64+ }
65+
66+ /* hack to change the color of date picker icon */
67+ ::-webkit-calendar-picker-indicator {
68+ filter : invert (1 );
69+ }
You can’t perform that action at this time.
0 commit comments