diff --git a/src/_includes/partials/components/meeting.njk b/src/_includes/partials/components/meeting.njk index cec3a41..59e7a4e 100644 --- a/src/_includes/partials/components/meeting.njk +++ b/src/_includes/partials/components/meeting.njk @@ -1,5 +1,5 @@
- + RĂ©unions d'information  diff --git a/src/scss/components/_meeting.scss b/src/scss/components/_meeting.scss index 4242b82..e34ccb4 100644 --- a/src/scss/components/_meeting.scss +++ b/src/scss/components/_meeting.scss @@ -3,45 +3,37 @@ position: fixed; right: 0; top: 20%; - background-color: var(--color-theme-secondary); - border-top-left-radius: 1.75rem; - border-bottom-left-radius: 1.75rem; - border: 2px solid var(--color-light); - border-right: 0; z-index: 10; - line-height: 1.25rem; - text-align: center; - text-decoration: none; - font-size: 1.125rem; - font-weight: 700; @media (max-width: 991.98px) { top: unset; right: 0; bottom: 0; left: 0; - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-bottom: 0; - border-left: 0; - border-right: 0; } &__link { display: block; flex: 1 1 auto; + border-radius: 0; + border-top-left-radius: 1.75rem; + border-bottom-left-radius: 1.75rem; + border: 2px solid var(--color-light); + border-right: 0; color: var(--color-white); - text-decoration: none; padding: 1.125rem 1rem 1.125rem 2rem; @media (max-width: 991.98px) { padding: 1.125rem 2rem; + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-bottom: 0; + border-left: 0; + border-right: 0; } - &:hover, - &:focus { - color: var(--color-white); - text-decoration: underline; + &:hover { + border-color: var(--color-white); } } }