Skip to content

Commit 5b8231c

Browse files
version 1.2.8
Refactor button styles and set tap color to transparent.
1 parent f2b2b13 commit 5b8231c

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [1.2.8] - 2026-01-31
4+
5+
### Changed
6+
7+
- Set tap color to transparent
8+
39
## [1.2.7] - 2026-01-25
410

511
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mfp-app",
33
"private": true,
4-
"version": "1.2.7",
4+
"version": "1.2.8",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --host",

src/style.css

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
--c-green2: #5BF1BA;
55
--c-black: #1a1a1a;
66
--c-black-mini-player: #2a2a2a;
7-
--c-transparent: rgba(0, 0, 0, 0);
87
--c-debug: var(--c-cyan);
98

109
--space-4: 4px;
@@ -152,22 +151,21 @@ body {
152151
font-family: "IBM Plex Mono", monospace;
153152
font-weight: 400;
154153
font-style: normal;
155-
156154
background-color: var(--c-black);
157155
color: var(--c-green);
158-
159156
touch-action: manipulation;
160157
}
161158

162159
button {
163-
background-color: var(--c-transparent);
160+
background-color: transparent;
164161
border-radius: 100%;
165-
border: 0;
162+
border: none;
166163
display: flex;
167164
align-items: center;
168165
justify-content: center;
169166
margin: 0;
170167
padding: 0;
168+
-webkit-tap-highlight-color: transparent;
171169
}
172170

173171
button,

0 commit comments

Comments
 (0)