Skip to content

Commit

Permalink
Fix z-index issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kulmann committed Jan 13, 2022
1 parent fb635db commit a4edc4b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/web-app-search/src/portals/SearchBar.vue
Expand Up @@ -223,7 +223,7 @@ export default {
background-color: var(--oc-color-background-muted);
border: 1px solid rgba(75, 94, 120, 0.6);
top: -20px;
z-index: 9999;
z-index: var(--oc-z-index-modal);
min-width: 252px !important;
}
Expand Down
Expand Up @@ -88,7 +88,7 @@ export default {
top: 0;
transition: all 0.35s cubic-bezier(0.34, 0.11, 0, 1.12);
box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
z-index: 3;
z-index: 4;
.toggle-sidebar-button {
transition: all 0.2s ease-out;
Expand Down
2 changes: 1 addition & 1 deletion packages/web-runtime/src/components/SkipTo.vue
Expand Up @@ -33,7 +33,7 @@ export default {
position: absolute;
top: -100px;
left: 0;
z-index: 4;
z-index: 6;
-webkit-appearance: none;
border: none;
background-color: var(--oc-color-swatch-brand-default);
Expand Down
2 changes: 1 addition & 1 deletion packages/web-runtime/src/components/TopBar.vue
Expand Up @@ -93,7 +93,7 @@ export default {
#oc-topbar {
height: 60px;
position: sticky;
z-index: 2;
z-index: 5;
img {
height: 42px;
image-rendering: auto;
Expand Down

0 comments on commit a4edc4b

Please sign in to comment.