generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Agent Transactions Design 1 * Minor CSS change * Review Comments incorporated for Closed transactions * Viewport changed --------- Co-authored-by: piyushjindal <[email protected]>
- Loading branch information
1 parent
122e873
commit a70fe50
Showing
3 changed files
with
45 additions
and
1 deletion.
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
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,42 @@ | ||
.design-1 .agent-transactions.block h1 { | ||
font-family: var(--font-family-secondary); | ||
font-size: 1.75rem; | ||
font-weight: var(--font-weight-normal); | ||
text-align: center; | ||
} | ||
|
||
.design-1 .agent-transactions.block th { | ||
color: var(--white); | ||
} | ||
|
||
@media (min-width: 600px) { | ||
.design-1 .agent-transactions.block h1 { | ||
font-size: 2.25rem; | ||
} | ||
} | ||
|
||
@media (min-width: 1200px) { | ||
.design-1 .agent-transactions.block h1 { | ||
font-size: 2.75rem; | ||
} | ||
} | ||
|
||
/* | ||
---------------------------------------- | ||
* Theme Name: Traditional | ||
*/ | ||
.design-1.traditional .agent-transactions.block thead { | ||
background: var(--primary-color); | ||
} | ||
|
||
/* | ||
---------------------------------------- | ||
* Theme Name: Black & White | ||
*/ | ||
.design-1.black-white .agent-transactions.block h1 { | ||
color: var(--black); | ||
} | ||
|
||
.design-1.black-white .agent-transactions.block thead { | ||
background: var(--black); | ||
} |