1
0
Fork 0
mirror of synced 2024-07-06 06:50:49 +12:00

Add background color to request feature button

This commit is contained in:
Andrew Kingston 2021-04-23 11:44:42 +01:00
parent 39c48c71ee
commit 7e4ab6af94
2 changed files with 4 additions and 2 deletions

View file

@ -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;

View file

@ -212,4 +212,7 @@
left: var(--spacing-m);
z-index: 1;
}
.beta :global(button) {
background-color: var(--background);
}
</style>