Skip to content

Commit

Permalink
Add styles for code tag
Browse files Browse the repository at this point in the history
  • Loading branch information
kitallis committed Feb 13, 2023
1 parent 5975b95 commit 9910c42
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
}
}

code {
color: var(--accent);
}

body {
font-family: sans-serif;
background-color: #f6f6f6;
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ impl Component for App {

<label>
<input aria-labelledby="show-versions" type="checkbox" class="show-versions" name="show-versions" onclick={ctx.link().callback(|_| Msg::ToggleShowingVersions)} checked={ self.state.custom_inputs.show_versions.to_owned() } />
{"Include supporting configuration for "}<mark>{"build numbers"}</mark>{" & "}<mark>{"build names"}</mark>
{"Include supporting configuration for "}<code>{"versionCode"}</code>{" & "}<code>{"versionName"}</code>
</label>
<br/>

Expand Down

0 comments on commit 9910c42

Please sign in to comment.