Skip to content

Commit

Permalink
fix: battery charging icon position
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-berger committed Oct 1, 2024
1 parent 3d2baaa commit c5c37fe
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions examples/boilerplate-react-buildless/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<!-- Custom styles. -->
<link rel="stylesheet" type="text/css" href="./styles.css" />

<!-- Disable find icon in local path. -->
<link rel="icon" href="data:;base64,=" />
<!-- Add empty favicon to suppress not found errors. -->
<link rel="icon" href="data:;" />

<!-- Allows React to be run buildless via "text/babel" script below. -->
<script
Expand Down
4 changes: 4 additions & 0 deletions examples/starter/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ body,
color: #900029;
}

.battery {
position: relative;
}

.battery .charging-icon {
position: absolute;
font-size: 11px;
Expand Down
4 changes: 2 additions & 2 deletions examples/starter/vanilla.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<!-- Custom styles. -->
<link rel="stylesheet" type="text/css" href="./styles.css" />

<!-- Disable find icon in local path. -->
<link rel="icon" href="data:;base64,=" />
<!-- Add empty favicon to suppress not found errors. -->
<link rel="icon" href="data:;" />

<!-- Allows React to be run buildless via "text/babel" script below. -->
<script
Expand Down
4 changes: 2 additions & 2 deletions examples/starter/with-glazewm.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<!-- Custom styles. -->
<link rel="stylesheet" type="text/css" href="./styles.css" />

<!-- Disable find icon in local path. -->
<link rel="icon" href="data:;base64,=" />
<!-- Add empty favicon to suppress not found errors. -->
<link rel="icon" href="data:;" />

<!-- Allows React to be run buildless via "text/babel" script below. -->
<script
Expand Down
4 changes: 2 additions & 2 deletions examples/starter/with-komorebi.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<!-- Custom styles. -->
<link rel="stylesheet" type="text/css" href="./styles.css" />

<!-- Disable find icon in local path. -->
<link rel="icon" href="data:;base64,=" />
<!-- Add empty favicon to suppress not found errors. -->
<link rel="icon" href="data:;" />

<!-- Allows React to be run buildless via "text/babel" script below. -->
<script
Expand Down

0 comments on commit c5c37fe

Please sign in to comment.