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

move BG span style to css and include rawbg #4670

Merged
merged 1 commit into from
Jun 20, 2019
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: 4 additions & 0 deletions static/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ a, a:visited, a:link {
color: #4cff00;
}

.bgStatus .bgSpan {
white-space: nowrap;
}

.bgStatus .currentBG {
font-size: 120px;
line-height: 100px;
Expand Down
6 changes: 3 additions & 3 deletions views/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@
</div>
<div class="primary" >
<div class="bgStatus current">
<div class="bgButton" aria-live="assertive" role="contentinfo" aria-label="Blood Sugar">
<span class="pill rawbg hidden"><em></em><label></label></span>
<span style="white-space: nowrap;">
<div class="bgButton" aria-live="assertive" role="contentinfo" aria-label="Blood Sugar">
<span class="bgSpan">
<span class="pill rawbg hidden"><em></em><label></label></span>
<span class="currentBG">---</span>
<span class="pill direction"></span>
</span>
Expand Down