Skip to content

Commit

Permalink
Merge pull request #329 from mg3-codes/style-fixes
Browse files Browse the repository at this point in the history
Font family fix
  • Loading branch information
mgamlem3 authored Feb 17, 2024
2 parents 4b1661b + 4699ff2 commit 77fcfac
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

# Changelog

## 0.5.2

- Fix dice font issue

## 0.5.1

- Fix minor style issues
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dnd-spell-organizer",
"license": "MIT",
"version": "0.5.1",
"version": "0.5.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
5 changes: 0 additions & 5 deletions src/components/dice-roller-page/page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@
@use "../../styles/bootstrap.scss" as bootstrap;
@use "../../styles/variables" as variables;

@font-face {
font-family: variables.$edge-symbols;
src: url("../../assets/EotE_Symbol-Regular_v1.otf") format("opentype");
}

.gutter-container {
margin: 20px 30px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const Footer = () => {

return (
<div className="footer">
<span className="version">Version: 0.5.1</span>
<span className="version">Version: 0.5.2</span>
<div className="links">
<Button variant="link" onClick={openHelpModal}>
Help
Expand Down
6 changes: 6 additions & 0 deletions src/components/page-wrapper/page-wrapper.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
*/

@use "../../styles/bootstrap.scss";
@use "../../styles/variables" as variables;

@font-face {
font-family: variables.$edge-symbols;
src: url("../../assets/EotE_Symbol-Regular_v1.otf") format("opentype");
}

body {
width: 100vw;
Expand Down
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const rollbarConfig = {
enabled: import.meta.env.MODE === "production",
captureUncaught: true,
captureUnhandledRejections: true,
code_version: "0.5.1",
code_version: "0.5.2",
source_map_enabled: true,
};

Expand Down

0 comments on commit 77fcfac

Please sign in to comment.