Implement issues for v1.1.0 #20

Merged
phlaym merged 24 commits from v1.1.0 into main 2023-04-07 15:07:41 +00:00
Showing only changes of commit c16bfd9c82 - Show all commits

View File

@ -35,6 +35,8 @@
color: var(--color-button-text); color: var(--color-button-text);
cursor: grab; cursor: grab;
transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out;
font-size: large;
font-weight: bold;
} }
button:hover:not(:disabled) { button:hover:not(:disabled) {
@ -42,7 +44,7 @@
} }
button:hover:not(:disabled):not(:active) { button:hover:not(:disabled):not(:active) {
box-shadow: 4px 4px 3px 0 var(--color-button-shadow); box-shadow: 6px 6px 5px 0 var(--color-button-shadow);
translate: -2px -2px; translate: -2px -2px;
} }
@ -52,6 +54,6 @@
} }
button:not(:disabled) { button:not(:disabled) {
box-shadow: 2px 2px 1px 0 var(--color-button-shadow); box-shadow: 4px 4px 2px 0 var(--color-button-shadow);
} }
</style> </style>