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