Skip to content

Commit

Permalink
refactor(style): Remove repeated semicolon
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Ng <[email protected]>
  • Loading branch information
Pytal committed Aug 30, 2024
1 parent 84ecb33 commit b31be49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/css/public.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#body-public {
--footer-height: calc(var(--default-line-height) + 2 * var(--default-grid-baseline));;
--footer-height: calc(var(--default-line-height) + 2 * var(--default-grid-baseline));

&:has(.footer__legal-links),
&:has(.footer__simple-sign-up) {
--footer-height: calc(2 * var(--default-line-height) + 3 * var(--default-grid-baseline));;
--footer-height: calc(2 * var(--default-line-height) + 3 * var(--default-grid-baseline));
}

&:has(.footer__legal-links):has(.footer__simple-sign-up) {
Expand Down Expand Up @@ -79,7 +79,7 @@
/* public footer */
footer {
position: fixed;
bottom: var(--body-container-margin);;
bottom: var(--body-container-margin);
background-color: var(--color-main-background);
border-radius: var(--body-container-radius);
box-sizing: border-box;
Expand Down

0 comments on commit b31be49

Please sign in to comment.