Skip to content

Commit

Permalink
add visibility to mobile and desktop titleblock css
Browse files Browse the repository at this point in the history
  • Loading branch information
mcwinter07 committed Dec 11, 2024
1 parent 6dc686a commit e3f6560
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@

@include title-block-small {
display: none;
visibility: hidden;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ $slide-up-duration: 0.4s;
/* stylelint-disable no-descending-specificity */
.mobileActionsContainer {
display: none;
// This is a bit of a monkey patch that's a potential solution the that may solve the ci issue that may be a issue with Jest-DOM
visibility: hidden;
z-index: $ca-z-index-fixed;
flex-direction: column;
position: fixed;
Expand All @@ -42,6 +44,7 @@ $slide-up-duration: 0.4s;

@include title-block-small {
display: flex;
visibility: visible;
}
}

Expand Down

0 comments on commit e3f6560

Please sign in to comment.