Add background color to request feature button
This commit is contained in:
parent
1bb79d77b9
commit
714929ff27
|
@ -26,7 +26,7 @@
|
|||
]
|
||||
|
||||
let modal
|
||||
$: selected = tabs.find(t => t.key === $params.assetType).title
|
||||
$: selected = tabs.find(t => t.key === $params.assetType)?.title || "Screens"
|
||||
|
||||
const navigate = ({ detail }) => {
|
||||
const { key } = tabs.find(t => t.title === detail)
|
||||
|
@ -113,7 +113,6 @@
|
|||
justify-content: flex-start;
|
||||
align-items: stretch;
|
||||
position: relative;
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
.title i {
|
||||
font-size: 20px;
|
||||
|
|
|
@ -212,4 +212,7 @@
|
|||
left: var(--spacing-m);
|
||||
z-index: 1;
|
||||
}
|
||||
.beta :global(button) {
|
||||
background-color: var(--background);
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue