1
0

Fix more of tnixc's bugs (#224)

* fix: User edit pencil on popout

* fix: Family center card icons

* fix: embeds same color as the backgound
This commit is contained in:
Jade Herd
2023-10-04 21:38:24 -04:00
committed by GitHub
parent 6567c8ffac
commit 43bce49d53
3 changed files with 16 additions and 5 deletions

View File

@@ -233,7 +233,7 @@ div[class|="channelTextArea"] button[class*="emojiButton-"] {
div[class|="chat"] > div[class|="content"] > div[class|="container"] {
background-color: $base;
div[class|="grid"],
div[class|="grid"][class*="scrollerBase"],
> div[class|="chatContainer"] > div[class|="container"] {
background-color: $base;
}

View File

@@ -426,6 +426,12 @@ div[class|="contentRegion"] {
}
}
}
#family-center-tab {
div[class|="featureCards"] svg[class|="icon"] {
color: $crust;
}
}
}
.bd-settings-title {

View File

@@ -267,11 +267,9 @@ section[class|="positionContainer"] {
}
> div[class|="focusLock"] > div[class|="root"] {
box-shadow:
0 0 0 1px $surface0,
box-shadow: 0 0 0 1px $surface0,
0 2px 10px 0 hsla(0, calc(var(--saturation-factor, 1) * 0%), 0%, 0.1);
-webkit-box-shadow:
0 0 0 1px $surface0,
-webkit-box-shadow: 0 0 0 1px $surface0,
0 2px 10px 0 hsla(0, calc(var(--saturation-factor, 1) * 0%), 0%, 0.1);
}
@@ -644,3 +642,10 @@ div[class|="layerContainer"] div[aria-label="clyde"] {
}
}
}
// User popout edit button
div[class|="layerContainer"] div[class|="pencilContainer"] {
svg[class|="editIcon"] {
color: $text;
}
}