[status page] crop and resize logo

This commit is contained in:
LouisLam
2021-09-15 18:28:48 +08:00
parent 2ab06f87b8
commit e8f4fabcd0
4 changed files with 135 additions and 11 deletions

View File

@@ -144,7 +144,9 @@ h2 {
}
.shadow-box {
background-color: $dark-bg;
&:not(.alert) {
background-color: $dark-bg;
}
}
.form-check-input {
@@ -376,12 +378,19 @@ h2 {
}
[contenteditable=true] {
transition: all $easing-in 0.2s;
&:focus {
outline: 0 solid #eee;
}
&:hover, &:focus {
background-color: #efefef;
background-color: rgb(239, 239, 239);
.dark & {
background-color: rgba(239, 239, 239, 0.2);
}
border-radius: 8px;
}
@@ -401,3 +410,7 @@ h2 {
transform: scale(1.2);
}
}
.vue-image-crop-upload .vicp-wrap {
border-radius: 10px !important;
}