-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f903a42
commit e724381
Showing
10 changed files
with
69 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export * from "./button"; | ||
export * from "./typography"; | ||
export * from "./title-bar"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import styled from "@emotion/styled"; | ||
import { floppy, sword } from "../icons"; | ||
|
||
export const Title = styled.h1` | ||
font-family: virgil; | ||
font-weight: bolder; | ||
font-size: 2.em; | ||
margin: 2px; | ||
text-align: center; | ||
` | ||
|
||
export const TitleBar = () => { | ||
return <div style={{ display: "flex", justifyContent: "center", paddingBottom: "15px", paddingTop: "5px" }}> | ||
<img style={{ width: "25px", marginRight: "10px" }} src={sword} /> | ||
<Title>Excalistore</Title> | ||
<img style={{ width: "35px", marginLeft: "10px" }} src={floppy} /> | ||
</div> | ||
} |
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import floppy from "./floppy.svg"; | ||
import sword from "./sword.svg"; | ||
export { floppy, sword }; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
import { css } from "@emotion/react"; | ||
// global styles | ||
import virgil from "./Virgil.woff2"; | ||
|
||
export const GlobalStyles = css` | ||
@font-face { | ||
font-family: "virgil"; | ||
src: url(${virgil}) format("woff2"); | ||
} | ||
html { | ||
min-width: 600px; | ||
max-width: 600px; | ||
min-height: 450px; | ||
max-height: 450px; | ||
border-radius: 1em; | ||
font-family: virgil; | ||
} | ||
`; |