Skip to content

Commit c62fecf

Browse files
committed
feat: Add dangerToast style for error notifications and adjust modal overflow behavior
1 parent 5b4ff4a commit c62fecf

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

src/assets/App.css

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1326,6 +1326,14 @@ Producthunt item
13261326
color: var(--primary-text-color);
13271327
border-radius: 10px;
13281328
}
1329+
1330+
.dangerToast {
1331+
background-color: #ff4d4f;
1332+
color: white;
1333+
padding: 10px 20px;
1334+
border-radius: 10px;
1335+
}
1336+
13291337
.capitalize {
13301338
text-transform: capitalize;
13311339
}
@@ -1346,7 +1354,7 @@ Modal
13461354
box-shadow: 0 0 20px #00000052;
13471355
z-index: 3;
13481356
max-height: 80vh;
1349-
overflow-y: scroll;
1357+
overflow-y: auto;
13501358
}
13511359

13521360
.Overlay {

0 commit comments

Comments
 (0)