-
Notifications
You must be signed in to change notification settings - Fork 506
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2d4e9d7
commit 48158eb
Showing
16 changed files
with
2,983 additions
and
3,056 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
"license": "MIT", | ||
"pnpm": { | ||
"patchedDependencies": { | ||
"@cliqz/[email protected].6": "patches/@[email protected].6.patch" | ||
"@cliqz/[email protected].15": "patches/@[email protected].15.patch" | ||
} | ||
}, | ||
"devDependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,34 @@ | ||
.container { | ||
html, | ||
body { | ||
height: 100vh; | ||
width: 100vw; | ||
overflow: hidden; | ||
.container-sider { | ||
.like-item { | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
} | ||
} | ||
|
||
#root { | ||
height: 100vh; | ||
width: 100vw; | ||
} | ||
|
||
@mixin scrollbar() { | ||
&::-webkit-scrollbar { | ||
height: 8px; | ||
width: 8px; | ||
} | ||
|
||
&::-webkit-scrollbar-track { | ||
background: transparent; | ||
} | ||
.container-footer { | ||
padding: 5px; | ||
background: #fff; | ||
text-align: right; | ||
border-top: #f0f0f0 solid 1px; | ||
|
||
&::-webkit-scrollbar-thumb { | ||
background: rgba(0, 0, 0, 0.15); | ||
} | ||
@media (prefers-color-scheme: dark) { | ||
.container-footer { | ||
background: #141414; | ||
border-top: #313131 solid 1px; | ||
&::-webkit-scrollbar-thumb { | ||
background: rgba(255, 255, 255, 0.15); | ||
} | ||
} | ||
} | ||
|
||
* { | ||
@include scrollbar(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
.container { | ||
height: 100vh; | ||
width: 100vw; | ||
overflow: hidden; | ||
.container-sider { | ||
.like-item { | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
} | ||
} | ||
.container-footer { | ||
padding: 5px; | ||
background: #fff; | ||
text-align: right; | ||
border-top: #f0f0f0 solid 1px; | ||
} | ||
@media (prefers-color-scheme: dark) { | ||
.container-footer { | ||
background: #141414; | ||
border-top: #313131 solid 1px; | ||
} | ||
} | ||
} |
Oops, something went wrong.