File tree Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ export const Form: React.FC = () => {
142142
143143 < PrimaryButton
144144 marginTop = "md"
145- className = { styles . signUpButton }
145+ className = { styles . skipEmailButton }
146146 loading = { skipSubmitting }
147147 onClick = { skip }
148148 >
Original file line number Diff line number Diff line change @@ -26,3 +26,15 @@ $bgColor: #FFFF;
2626 width : 100% ;
2727 background-color : #E8A562 ;
2828}
29+
30+ .skipEmailButton {
31+ width : 100% ;
32+
33+ background-color :transparent ;
34+ color :#A1A4AB ;
35+ & :hover {
36+ background : transparent ;
37+ }
38+ // background-color: #E8A562;
39+
40+ }
Original file line number Diff line number Diff line change 1+ export type Sorting =
2+ | 'id'
3+ | 'stackRunType'
4+ | 'status'
5+ | 'datasourceCommit'
6+ | 'createdAt' ;
7+
8+ export type SortingDirection = 'ASC' | 'DESC' ;
You can’t perform that action at this time.
0 commit comments