Skip to content

Commit cc57690

Browse files
committed
fix: hide wizard progress bar on mobile (override after base styles)
1 parent 5ba929e commit cc57690

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

public/css/style.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3702,6 +3702,16 @@ tbody tr:hover {
37023702
padding-top: 20px;
37033703
}
37043704

3705+
.wizard-progress::-webkit-scrollbar {
3706+
display: none;
3707+
}
3708+
3709+
@media (max-width: 768px) {
3710+
.wizard-progress {
3711+
display: none;
3712+
}
3713+
}
3714+
37053715
/* Nest Cards Grid */
37063716
.nest-grid {
37073717
display: grid;

0 commit comments

Comments
 (0)