Skip to content

Commit b849e75

Browse files
authored
v2.18.0 (#257)
2 parents 9bc441d + 3f06983 commit b849e75

60 files changed

Lines changed: 1435 additions & 1543 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@
2121
"[xml]": {
2222
"editor.defaultFormatter": "redhat.vscode-xml"
2323
},
24+
"css.lint.unknownAtRules": "ignore",
2425
}

app/(Layout)/desktop/HeaderBar/UserLogin/UserLogin.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import "@/app/styles/variables.scss";
1+
@use "@/app/styles/variables.scss";
22

33
.userPanel {
44
aspect-ratio: 4.5 / 1;

app/(Layout)/mobile/HeaderBar/HeaderBar.module.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
@import "@/app/styles/variables.scss";
1+
@use "../../../../app/styles/variables.scss";
22

33
.nav {
4-
height: $mobile-headerbar-height;
4+
height: variables.$mobile-headerbar-height;
55
width: 100%;
66
padding: 0.5rem 0.5rem 0.5rem 1rem;
77
position: fixed;
@@ -14,7 +14,7 @@
1414

1515
user-select: none;
1616
backdrop-filter: blur(10px);
17-
background-color: $panel-background-color;
17+
background-color: variables.$panel-background-color;
1818
border-bottom: 1px solid rgba(255, 255, 255, 0.6);
1919
}
2020

app/(Layout)/mobile/HeaderBar/UserLogin/UserLogin.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
@import "@/app/styles/variables.scss";
1+
@use "@/app/styles/variables.scss";
22

33
.userPanel {
44
aspect-ratio: 1 / 1;
5-
height: calc($mobile-headerbar-height - 0.7rem);
5+
height: calc(variables.$mobile-headerbar-height - 0.7rem);
66
border-radius: 9999px;
77
background: rgba(255, 255, 255, 0.8);
88
cursor: pointer;

app/(Layout)/mobile/ToolBar/ToolBar.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
@import "@/app/styles/variables.scss";
1+
@use "@/app/styles/variables.scss";
22

33
.toolBarWrapper {
4-
height: $mobile-toolbar-height;
4+
height: variables.$mobile-toolbar-height;
55
width: 100%;
66
position: fixed;
77
bottom: 0;

app/(Layout)/splitBlock.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import "@/app/styles/variables.scss";
1+
@use "@/app/styles/variables.scss";
22

33
.app {
44
width: 90dvw;
@@ -24,7 +24,7 @@
2424
max-width: 90dvw;
2525
// max-height: 70dvh;
2626
height: 100%;
27-
border-radius: $border-radius;
27+
border-radius: variables.$border-radius;
2828

2929
overflow-y: auto;
3030

app/(Layout)/splitBlockNew.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import "@/app/styles/variables.scss";
1+
@use "@/app/styles/variables.scss";
22

33
.app {
44
width: 90dvw;
@@ -24,7 +24,7 @@
2424
max-width: 90dvw;
2525
// max-height: 70dvh;
2626
height: 100%;
27-
border-radius: $border-radius;
27+
border-radius: variables.$border-radius;
2828

2929
overflow-y: auto;
3030

app/(home)/desktop/Information.module.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
@import "@/app/styles/variables.scss";
1+
@use "@/app/styles/variables.scss";
22

33
$h2TitleHeight: 1.8rem;
44

55
.information {
6-
padding: $padding;
7-
background-color: $panel-background-color;
6+
padding: variables.$padding;
7+
background-color: variables.$panel-background-color;
88
height: 100%;
9-
border-radius: $border-radius;
9+
border-radius: variables.$border-radius;
1010
overflow: hidden;
1111
position: relative;
1212

app/(home)/mobile/SigList.module.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import "@/app/styles/variables.scss";
1+
@use "@/app/styles/variables.scss";
22

33
$linksHeight: 1.5rem;
44
$h2TitleHeight: 1.8rem;
@@ -55,12 +55,12 @@ $h2TitleHeight: 1.8rem;
5555

5656
.sigs::-webkit-scrollbar-track {
5757
border-radius: 5px;
58-
background: $scrollbar-track-color;
58+
background: variables.$scrollbar-track-color;
5959
}
6060

6161
.sigs::-webkit-scrollbar-thumb {
6262
border-radius: 5px;
63-
background: $scrollbar-thumb-color;
63+
background: variables.$scrollbar-thumb-color;
6464
}
6565

6666
.sig {

app/(home)/mobile/Threads.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import "@/app/styles/variables.scss";
1+
@use "@/app/styles/variables.scss";
22

33
.messagePage {
44
font-size: 3rem;
@@ -12,7 +12,7 @@
1212
width: 100dvw;
1313
height: 100%;
1414

15-
padding: $mobile-headerbar-height $mobile-border-margin $mobile-toolbar-height $mobile-border-margin;
15+
padding: variables.$mobile-headerbar-height variables.$mobile-border-margin variables.$mobile-toolbar-height variables.$mobile-border-margin;
1616

1717
position: relative;
1818
overflow-y: auto;

0 commit comments

Comments
 (0)