mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-21 04:46:02 +00:00
17 lines
278 B
Svelte
17 lines
278 B
Svelte
<div on:click>
|
|
<slot />
|
|
</div>
|
|
|
|
<style>
|
|
div {
|
|
padding: 5px;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
background-color: var(--theme-bg-1);
|
|
border: 2px solid var(--theme-border);
|
|
}
|
|
div:hover {
|
|
background-color: var(--theme-bg-2);
|
|
}
|
|
</style>
|