Skip to content

Commit

Permalink
feat: fix css
Browse files Browse the repository at this point in the history
  • Loading branch information
wkylin committed Jan 15, 2025
1 parent 396d6c8 commit 750ca1e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/components/stateful/CheckableTags/index.module.less
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

.checkableTag {
display: inline-block;
width: calc(~'100% - 68px');
}

.title {
Expand Down
1 change: 0 additions & 1 deletion src/components/stateless/AnimateRipple/index.module.less
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
justify-content: center;
border: 1px solid transparent;
background-color: #3857e3;
font-weight: medium;
color: #fff;
box-shadow:
0 1px 3px 0 rgb(0 0 0 / 10%),
Expand Down
4 changes: 2 additions & 2 deletions src/components/stateless/AnimateWave/index.module.less
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
font-size: 60px;
margin: 0;
color: white;
background: linear-gradient(rgb(115 0 64) 0%, rgb(48 28 190) 100%) text;
background: linear-gradient(rgb(115 0 64) 0%, rgb(48 28 190) 100%);
-webkit-text-fill-color: transparent;
}

.hIBkFg span {
background: linear-gradient(rgb(255 215 255) 0%, rgb(255 182 255) 100%) text;
background: linear-gradient(rgb(255 215 255) 0%, rgb(255 182 255) 100%);
-webkit-text-fill-color: transparent;
}

Expand Down
14 changes: 10 additions & 4 deletions src/pages/home/index.module.less
Original file line number Diff line number Diff line change
Expand Up @@ -481,8 +481,8 @@
margin: 0 15px;
}

.circledHighlight:before,
.circledHighlight:after {
.circledHighlight::before,
.circledHighlight::after {
content: '';
width: 120%;
height: 100%;
Expand All @@ -494,12 +494,18 @@
box-sizing: border-box;
}

.circledHighlight:before {
.circledHighlight::before {
border: 2px solid #06251b;
transform: rotate(-4deg);
}

.circledHighlight:after {
.circledHighlight::after {
border: 1px solid #63d9b3;
transform: rotate(6deg);
}

// backdrop-filter
// object-fit: cover;
// object-position: 0 0;
// isolation: isolate;
// z-index: 1;
1 change: 0 additions & 1 deletion src/pages/motion/index.module.less
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
right: 0;
background-color: rgb(0 0 0 / 20%);
backdrop-filter: blur(5px);
backdrop-filter: blur(5px);
z-index: 10;

ul {
Expand Down

0 comments on commit 750ca1e

Please sign in to comment.