Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: correct positioning of battery charging icon in examples #118

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
10 changes: 7 additions & 3 deletions examples/starter/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,13 @@ body,
color: #900029;
}

.battery {
position: relative;
}

.battery .charging-icon {
position: absolute;
font-size: 11px;
left: 7px;
top: 2px;
font-size: 7px;
left: -8px;
top: 3px;
}
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