Compare commits
2
Commits
bae4153201
...
628f140d89
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
628f140d89 | ||
|
|
9ffb87475b |
@@ -46,11 +46,11 @@ $button-size: 80px;
|
|||||||
padding: 0.4rem;
|
padding: 0.4rem;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border: 1px solid hsl(0 74% 10% / 50%);
|
border: 1px solid hsl(0, 74%, 10%, 0.5);
|
||||||
border-bottom-color: hsl(0 74% 80% / 10%);
|
border-bottom-color: hsl(0, 74%, 80%, 0.1);
|
||||||
border-radius: 0.5rem;
|
border-radius: 0.5rem;
|
||||||
background-image: linear-gradient(to bottom, hsl(0 74% 80%), hsl(0 74% 70%));
|
background-image: linear-gradient(to bottom, hsl(0, 74%, 80%), hsl(0, 74%, 70%));
|
||||||
box-shadow: inset 3px 3px 0.5rem hsl(0 74% 20%);
|
box-shadow: inset 3px 3px 0.5rem hsl(0, 74%, 20%);
|
||||||
font-size: 0.2rem;
|
font-size: 0.2rem;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
@@ -70,9 +70,9 @@ $button-size: 80px;
|
|||||||
}
|
}
|
||||||
|
|
||||||
&.pressed {
|
&.pressed {
|
||||||
background-image: linear-gradient(to bottom, hsl(0 74% 80%), hsl(0 74% 70%));
|
background-image: linear-gradient(to bottom, hsl(0, 74%, 80%), hsl(0, 74%, 70%));
|
||||||
box-shadow: inset 3px 3px 0.5rem hsl(0 74% 20%);
|
box-shadow: inset 3px 3px 0.5rem hsl(0, 74%, 20%);
|
||||||
border: 9px solid hsl(0 74% 10% / 50%);
|
border: 9px solid hsl(0, 74%, 10%, 0.5);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import PocketBase from 'pocketbase'
|
|
||||||
|
|
||||||
const pb = new PocketBase('http://localhost:8090')
|
const { pb } = usePocketbase()
|
||||||
|
|
||||||
type playfieldButton = {
|
type playfieldButton = {
|
||||||
id: number,
|
id: number,
|
||||||
|
|||||||
Reference in New Issue
Block a user