Skip to content

Commit

Permalink
fix: js linter warning
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos committed Aug 29, 2024
1 parent 58b5770 commit 53f73bc
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
4 changes: 3 additions & 1 deletion src/Components/File/File.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ export default {
> * {
--color-border: var(--color-border-dark);
}
border-radius: 10px;
& {
border-radius: 10px;
}
}
img{
Expand Down
4 changes: 3 additions & 1 deletion src/Components/Request/VisibleElements.vue
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,9 @@ export default {
&--sidebar {
width: 300px;
}
overflow: auto;
& {
overflow: auto;
}
.button-vue {
margin: 4px;
}
Expand Down
12 changes: 7 additions & 5 deletions src/views/CreateAccount.vue
Original file line number Diff line number Diff line change
Expand Up @@ -235,11 +235,7 @@ body {
display: inline-flex;
}
}
.create-account {
h2 {
font-size: 20px;
font-weight: bold;
}
.create-account & {
--color-text-maxcontrast: var(--color-text-maxcontrast-background-blur, var(--color-main-text));
color: var(--color-main-text);
background-color: var(--color-main-background-blur);
Expand All @@ -250,6 +246,12 @@ body {
backdrop-filter: var(--filter-background-blur);
width: 320px;
box-sizing: border-box;
}
.create-account {
h2 {
font-size: 20px;
font-weight: bold;
}
&__headline{
text-align: center;
overflow-wrap: anywhere;
Expand Down
4 changes: 3 additions & 1 deletion src/views/Timeline/Timeline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,9 @@ export default {
> * {
--color-border: var(--color-border-dark);
}
border-radius: 10px;
& {
border-radius: 10px;
}
}
ul{
Expand Down

0 comments on commit 53f73bc

Please sign in to comment.