-
Notifications
You must be signed in to change notification settings - Fork 514
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
d69361a
commit b5ea838
Showing
2 changed files
with
245 additions
and
20 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
20 changes: 20 additions & 0 deletions
20
website/src/components/strategy_editor/PreFlopStrategyEditor.css
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,20 @@ | ||
.left-border { | ||
border-left: 2px solid black; | ||
} | ||
|
||
.right-border { | ||
border-right: 2px solid black; | ||
} | ||
|
||
.value-cell { | ||
position: relative; | ||
} | ||
|
||
.value-cell::after { | ||
content: '%'; | ||
position: absolute; | ||
right: 5px; | ||
top: 50%; | ||
transform: translateY(-50%); | ||
} | ||
|