-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: use styles from short css file
- Loading branch information
1 parent
b8108bd
commit 2baf26c
Showing
3 changed files
with
17 additions
and
53 deletions.
There are no files selected for viewing
44 changes: 0 additions & 44 deletions
44
src/components/GoalsComponents/DisplayChangesModal/ShowChanges.scss
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,79 +1,35 @@ | ||
.move-info-container { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 20px; | ||
background: var(--secondary-background); | ||
border-radius: 12px; | ||
padding: 24px; | ||
border: 1px solid var(--default-border-color); | ||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); | ||
|
||
.move-info-item { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 8px; | ||
|
||
.move-info-label { | ||
font-size: 12px; | ||
color: var(--text-secondary); | ||
font-weight: 600; | ||
text-transform: uppercase; | ||
letter-spacing: 0.5px; | ||
} | ||
|
||
.move-info-value { | ||
font-size: 14px; | ||
color: var(--text-primary); | ||
padding: 12px 16px; | ||
background: var(--primary-background); | ||
border-radius: 8px; | ||
border: 1px solid var(--default-border-color); | ||
line-height: 1.4; | ||
|
||
&.highlight-box { | ||
background: var(--selection-color); | ||
border: none; | ||
font-weight: 500; | ||
} | ||
} | ||
} | ||
|
||
.move-direction-container { | ||
display: grid; | ||
grid-template-columns: 1fr auto 1fr; | ||
align-items: center; | ||
gap: 12px; | ||
padding: 16px; | ||
background: var(--primary-background); | ||
border-radius: 12px; | ||
border: 1px solid var(--default-border-color); | ||
|
||
.arrow { | ||
width: 32px; | ||
height: 32px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
background: var(--secondary-background); | ||
border-radius: 50%; | ||
color: var(--text-secondary); | ||
font-size: 18px; | ||
margin-top: 24px; | ||
} | ||
} | ||
|
||
.warning-message { | ||
display: flex; | ||
align-items: center; | ||
gap: 8px; | ||
padding: 12px 16px; | ||
background: var(--bottom-nav-color); | ||
border-radius: 8px; | ||
margin-top: 4px; | ||
font-size: 13px; | ||
|
||
.anticon { | ||
font-size: 16px; | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -96,6 +96,14 @@ | |
font-size: 1.25rem; | ||
} | ||
|
||
.text-sm { | ||
font-size: 0.875rem; | ||
} | ||
|
||
.text-xs { | ||
font-size: 0.75rem; | ||
} | ||
|
||
.m-0 { | ||
margin: 0; | ||
} |