Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
denniskigen committed Oct 16, 2024
1 parent b9fb723 commit a02ac7e
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions packages/apps/esm-help-menu-app/src/help-menu/help.styles.scss
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
.helpMenuButton:hover {
background-color: #e0e0e0;
cursor: pointer;
}
@use '@carbon/colors';
@use '@carbon/layout';

.helpMenuButton {
z-index: 7900;
background-color: white;
height: 2.5rem !important;
width: 2.5rem !important;
bottom: 1rem;
bottom: layout.$spacing-05;
position: fixed;
display: flex;
justify-content: center;
Expand All @@ -18,5 +16,10 @@
box-shadow:
0 1px 3px rgba(0, 0, 0, 0.1),
0 1px 2px -1px rgba(0, 0, 0, 0.1);
border-radius: 2rem;
border-radius: layout.$spacing-03;

&:hover {
background-color: colors.$gray-20;
cursor: pointer;
}
}

0 comments on commit a02ac7e

Please sign in to comment.