generated from visoftsolutions/ksox-template
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Bartosz Nowak
committed
Oct 22, 2023
1 parent
f50dd4f
commit bd35a21
Showing
5 changed files
with
70 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { style } from "@vanilla-extract/css"; | ||
import { vars } from "~/theme.css"; | ||
|
||
const background = style({ | ||
backgroundColor: vars.color.background, | ||
}); | ||
|
||
export const mainBuySell = style({ | ||
height: "100%", | ||
display: "grid", | ||
gridTemplateColumns: "1fr 300px", | ||
gap: "1px", | ||
}); | ||
|
||
export const buySell = style([background, {}]); | ||
|
||
export const mainPosition = style({ | ||
display: "grid", | ||
gridTemplateRows: "1fr 350px", | ||
gap: "1px", | ||
}); | ||
|
||
export const position = style([background, {}]); | ||
|
||
export const chartOrderbook = style({ | ||
display: "grid", | ||
gridTemplateColumns: "1fr 350px", | ||
gap: "1px", | ||
}); | ||
|
||
export const chart = style([background, {}]); | ||
|
||
export const orderbook = style([background, {}]); |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { style } from "@vanilla-extract/css"; | ||
import { vars } from "~/theme.css"; | ||
|
||
const background = style({ | ||
backgroundColor: vars.color.background, | ||
}); | ||
|
||
export const index = style([ | ||
background, | ||
{ | ||
height: "100%", | ||
}, | ||
]); |
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