Chore: fix the resolve button padding issue. (#2130)

This commit is contained in:
Sivin Varghese
2021-04-19 22:17:02 +05:30
committed by GitHub
parent 8f2234671b
commit 654893b6d7

View File

@@ -33,7 +33,6 @@
</woot-button> </woot-button>
<woot-button <woot-button
v-if="showDropDown" v-if="showDropDown"
class="icon--small"
:color-scheme="buttonClass" :color-scheme="buttonClass"
:disabled="isLoading" :disabled="isLoading"
icon="ion-arrow-down-b" icon="ion-arrow-down-b"
@@ -136,6 +135,7 @@ export default {
align-items: center; align-items: center;
justify-content: flex-end; justify-content: flex-end;
} }
.dropdown-pane { .dropdown-pane {
left: unset; left: unset;
top: 4.2rem; top: 4.2rem;
@@ -143,7 +143,4 @@ export default {
right: 0; right: 0;
max-width: 20rem; max-width: 20rem;
} }
.icon--small::v-deep .icon {
font-size: var(--font-size-small);
}
</style> </style>