Skip to content

Commit

Permalink
fix transparent nav bg (#6229)
Browse files Browse the repository at this point in the history
  • Loading branch information
julianjelfs authored Aug 13, 2024
1 parent 08d5e30 commit ac282f1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/app/src/components/AlertBox.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<style lang="scss">
.alert-box {
padding: $sp4;
border: 1px solid var(--warn);
border: var(--bw) solid var(--warn);
display: flex;
align-items: flex-start;
gap: $sp3;
Expand Down
4 changes: 3 additions & 1 deletion frontend/app/src/components/home/profile/ChitEvents.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import { i18nKey } from "../../../i18n/i18n";
import { chitPopup, utcMode } from "../../../stores/settings";
import Translatable from "../../Translatable.svelte";
import { menuCloser } from "../../../actions/closeMenu";
const client = getContext<OpenChat>("client");
let busy = false;
Expand Down Expand Up @@ -86,7 +87,7 @@
}
</script>

<div class="chit-events">
<div use:menuCloser class="chit-events">
<div class="header">
{#if streak > 0}
<div class="streak">
Expand Down Expand Up @@ -136,6 +137,7 @@
display: flex;
flex-direction: column;
padding: $sp5 $sp5 0 $sp5;
@include nice-scrollbar();
@include mobile() {
padding: $sp4 $sp4 0 $sp4;
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/src/theme/community/signals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function getTheme(base: Theme): Theme {
base.entry.input.sh = "none";
base.entry.input.bd = black;
base.panel.bg = "transparent";
base.panel.nav.bg = "transparent";
base.panel.nav.bg = white;
base.panel.left.bg = "transparent";
base.panel.right.bg = "transparent";
base.panel.right.modal = white;
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/src/theme/community/white.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function getTheme(base: Theme): Theme {
base.entry.input.sh = "inset 0px 2px 4px rgba(138, 138, 138, 0.5)";
base.panel.bg = "transparent";
base.panel.left.bg = "transparent";
base.panel.nav.bg = "transparent";
base.panel.nav.bg = white;
base.panel.right.bg = "transparent";
base.panel.right.modal = white;
base.chatSearch.bg = textBox;
Expand Down

0 comments on commit ac282f1

Please sign in to comment.