Book form: change the icon background when book is read
This commit is contained in:
@@ -91,7 +91,7 @@ onUnmounted(() => {
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding-bottom: 0px;
|
padding-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bigiconandlegend {
|
.bigiconandlegend {
|
||||||
|
|||||||
@@ -125,7 +125,8 @@ function goToAuthor() {
|
|||||||
</div>
|
</div>
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<div class="iconscontainer" :class="data.read ? 'remove-border-bottom' : ''">
|
<div class="iconscontainer" :class="data.read ? 'remove-border-bottom' : ''">
|
||||||
<div class="bigiconcontainer">
|
<div class="bigiconcontainer"
|
||||||
|
:class="data.wantread ? 'has-text-dark has-background-text border-radius-up-fill' : ''">
|
||||||
<BigIcon
|
<BigIcon
|
||||||
icon="BIconEye"
|
icon="BIconEye"
|
||||||
:legend="$t('bookform.wantread')"
|
:legend="$t('bookform.wantread')"
|
||||||
@@ -187,6 +188,14 @@ img {
|
|||||||
.left-panel {
|
.left-panel {
|
||||||
margin-left: 3rem;
|
margin-left: 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.border-radius-up-fill {
|
||||||
|
border-radius: 45px 45px 0px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bigiconcontainer {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
@media (max-width: 1024px) {
|
||||||
@@ -199,6 +208,10 @@ img {
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.border-radius-up-fill {
|
||||||
|
border-radius: 38px 0px 0px 38px;
|
||||||
|
}
|
||||||
|
|
||||||
.image {
|
.image {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|||||||
Reference in New Issue
Block a user