Compare commits

...

3 Commits

Author SHA1 Message Date
zhengyi 8e00479668 Merge pull request 'v1.1.1 Releases' (PR#12) from dev into main
Reviewed-on: #12
2024-02-06 22:05:36 +08:00
zhengyi 0726c0be25 🐛 Add default color for tips
Fix #11
2024-02-06 21:48:41 +08:00
zhengyi 55c4394757 🐛 Fix no parent node for css
Fix #8
Fix #10
2024-02-06 21:39:47 +08:00
6 changed files with 20 additions and 4 deletions

1
.gitignore vendored
View File

@ -130,3 +130,4 @@ dist
.pnp.*
.idea
.DS_Store

View File

@ -28,5 +28,6 @@
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
},
"packageManager": "pnpm@8.0.0"
}

View File

@ -1,6 +1,6 @@
@import "constant";
.drive {
.halo-render.drive {
border: 1px solid @secondary-light;
border-radius: @border-radius;
padding: 10px;

View File

@ -2,7 +2,7 @@
@git-color: #3478CD;
.git {
.halo-render.git {
display: flex;
gap: 10px;
border: 1px solid #ececec;

View File

@ -32,6 +32,19 @@
font-family: iconfont, sans-serif;
font-size: 16px;
}
img, a {
width: initial;
height: initial;
min-width: initial;
min-height: initial;
max-width: initial;
max-height: initial;
border-radius: initial;
border: initial;
margin: initial;
padding: initial;
}
}
.halo-render-wrapper {

View File

@ -2,12 +2,13 @@
@border-width: 6px;
@border-type: solid;
.tips {
.halo-render.tips {
position: relative;
padding: 15px 15px;
border-left-style: @border-type;
border-left-width: @border-width;
border-radius: @border-radius;
color: #333333;
border-left-color: #818181;
background-color: #F4F4F4;