From c5a6605f7e54906b8829c3ac5235308875fc2d2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=C3=A9n?= Date: Tue, 7 May 2024 10:34:39 +0200 Subject: [PATCH 1/2] fix(text): update transparent window controls snippet 40px does not cover the entire button with the new spotify design --- text/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/README.md b/text/README.md index e7a8706d..f60323e9 100644 --- a/text/README.md +++ b/text/README.md @@ -170,7 +170,7 @@ body::after { this size is set for 100% zoom */ width: 135px; - height: 40px; + height: 64px; } ``` From 4b987be534bdaa0b275b04c7c2a32248634bc0a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=C3=A9n?= Date: Tue, 7 May 2024 10:50:14 +0200 Subject: [PATCH 2/2] docs: add info regarding height prop --- text/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/text/README.md b/text/README.md index f60323e9..26f78b47 100644 --- a/text/README.md +++ b/text/README.md @@ -170,6 +170,9 @@ body::after { this size is set for 100% zoom */ width: 135px; + /* depending on what global status bar + style is enabled height need to be + changed accordingly. */ height: 64px; } ```