Skip to content

Commit bad17b6

Browse files
style for skip button is fixed
1 parent 2bc5f86 commit bad17b6

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

src/ui/layouts/session/UserEmail/Form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
>

src/ui/layouts/session/UserEmail/index.module.scss

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
export type Sorting =
2+
| 'id'
3+
| 'stackRunType'
4+
| 'status'
5+
| 'datasourceCommit'
6+
| 'createdAt';
7+
8+
export type SortingDirection = 'ASC' | 'DESC';

0 commit comments

Comments
 (0)