Skip to content

Commit

Permalink
format, revert
Browse files Browse the repository at this point in the history
  • Loading branch information
NyxIsBad committed Apr 1, 2024
1 parent dc1e367 commit 81c826e
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 27 deletions.
11 changes: 8 additions & 3 deletions lib/selectors/selectorPlaceholders.scss
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,8 @@
.gameIcon__5f62a {
@extend %activityPanelGameIcon !optional;
}
.title__4a7a9 { // Duplicate Class
.title__4a7a9 {
// Duplicate Class
@extend %activityPanelTitle !optional;
}
.actions_d57dc4 {
Expand Down Expand Up @@ -3144,6 +3145,9 @@ pre {
.focused_d14fa7 {
@extend %settingsDropdownOptionFocused !optional;
}
.attendeeCTA__1439e {
@extend %settingsAttendeeCTA !optional;
}
.customColorPicker_bbc020 {
@extend %settingsColorPickerCustom !optional;
}
Expand Down Expand Up @@ -3759,7 +3763,8 @@ pre {
.giftCard__4b868 {
@extend %userSettingsNitroGiftCard !optional;
}
.borderRect__8ec00 { // OBSOLETE
.borderRect__8ec00 {
// OBSOLETE
@extend %userSettingsBoostHeaderBorderRect !optional;
}
.header__5c5a9 {
Expand Down Expand Up @@ -5313,4 +5318,4 @@ pre {
}
.shyButton__30111 {
@extend %shopNewPill !optional;
}
}
2 changes: 1 addition & 1 deletion src/app/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ textarea,
::selection {
color: #fff;
background: $main-color;
}
}
4 changes: 2 additions & 2 deletions src/app/titlebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
text-shadow: 0 0 3px #000;
}
&:after {
content: 'v69.420.69';
content: cv('const:text.titlebar.version');
color: hsla(0, 0%, 100%, 0.3);
font-family: cv('font.code');
font-size: 10px;
Expand Down Expand Up @@ -96,7 +96,7 @@
text-shadow: 0 0 3px;
}
&:after {
content: 'v69.420.69';
content: '#{$version}';
color: hsla(0, 0%, 100%, 0.3);
}
}
2 changes: 1 addition & 1 deletion src/messages/textContainer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
// CHANGE LANGUAGE POPOUT
%textContainerLanguageSelector {
background-color: cv('bg.general.popout');
}
}
5 changes: 2 additions & 3 deletions src/pages/discordShop.scss
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@
}
}


// Shop new pill
%shopNewPill {
background: radial-gradient(ellipse at 120%200%,var(--main-color) 10%,transparent 70%);
}
background: radial-gradient(ellipse at 120%200%, var(--main-color) 10%, transparent 70%);
}
29 changes: 12 additions & 17 deletions src/settings/content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -115,21 +115,16 @@
}
}






// ohnyo
.attendeeCTA__1439e:after {
content: 'ClearVision easter egg, please visit our server for a headpat :)';
position: absolute;
width: 100%;
height: 100%;
font-size: 1rem;
color: hsla(0, 0%, 100%, .7);
text-align: center;
top: 130%;
z-index: -1;
left: 0;
}
%settingsAttendeeCTA:after {
content: 'ClearVision easter egg, please visit our server for a headpat :)';
position: absolute;
width: 100%;
height: 100%;
font-size: 1rem;
color: hsla(0, 0%, 100%, 0.7);
text-align: center;
top: 130%;
z-index: -1;
left: 0;
}

0 comments on commit 81c826e

Please sign in to comment.