Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds fixed height to error-icon class to fix another safari style bug… #21678

Merged
merged 1 commit into from
Jul 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion ui/app/styles/components/icon.scss
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,15 @@
height: 32px;
}

// if using @stretched on FlightIcon there must be an explicit height set on the parent if used in a flexbox
// without height set the flexbox will scale out of proportion on Safari

.brand-icon-large {
width: 62px;
height: 62px; // without an explicit height the view breaks in Safari
height: 62px;
}

.error-icon {
width: 48px;
height: 48px;
}