mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
fix(editor): Transparentize tertiary button on Usage page (#5033)
This commit is contained in:
parent
52077e2c45
commit
d6bc760ab4
|
@ -152,6 +152,7 @@ const onDialogOpened = () => {
|
|||
|
||||
<div :class="$style.buttons">
|
||||
<n8n-button
|
||||
:class="$style.buttonTertiary"
|
||||
@click="onAddActivationKey"
|
||||
v-if="usageStore.canUserActivateLicense"
|
||||
type="tertiary"
|
||||
|
@ -279,6 +280,13 @@ div[class*='info'] > span > span:last-child {
|
|||
line-height: 1.4;
|
||||
padding: 0 0 0 var(--spacing-4xs);
|
||||
}
|
||||
|
||||
.buttonTertiary {
|
||||
&,
|
||||
&:hover {
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
|
Loading…
Reference in a new issue