generated from wrappid/wrappid-module
-
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.
styles related changes and settings file updated Ref #24
- Loading branch information
Showing
7 changed files
with
73 additions
and
50 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,9 +1,13 @@ | ||
import { defaultUtilityStyles } from "@wrappid/styles"; | ||
import { DefaultCoreStyles } from "@wrappid/core"; | ||
|
||
export const defaultAppStyles = { | ||
/************************************************** | ||
* Using defaultUtilityStyles example | ||
* eg. testWrappidStyleClass: { ...defaultUtilityStyles.anyUtilityStyle }, | ||
*************************************************/ | ||
testWrappidStyleClass: { ...defaultUtilityStyles.bgBlack } | ||
}; | ||
export class DefaultModuleStyles extends DefaultCoreStyles { | ||
constructor(){ | ||
super(); | ||
this.style = { | ||
/************************************************** | ||
* Using defaultUtilityStyles example | ||
*************************************************/ | ||
testWrappidStyleClass: { ...this.styles.devBorder }, | ||
}; | ||
} | ||
} |
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,13 @@ | ||
// -- import { largeUtilityStyles } from "@wrappid/styles"; | ||
import { LargeCoreStyles } from "@wrappid/core"; | ||
|
||
export const largeAppStyles = { | ||
/************************************************** | ||
* Using largeUtilityStyles example | ||
* eg. usingLargeUtilityStyles: { ...largeUtilityStyles.anyUtilityStyle }, | ||
*************************************************/ | ||
testWrappidStyleClass: {/* your style goes here */} | ||
}; | ||
export class LargeModuleStyles extends LargeCoreStyles { | ||
constructor(){ | ||
super(); | ||
this.style = { | ||
/************************************************** | ||
* Using LargeUtilityStyles example | ||
*************************************************/ | ||
testWrappidStyleClass: { ...this.styles.devBorder }, | ||
}; | ||
} | ||
} |
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,10 +1,13 @@ | ||
// -- import { mediumUtilityStyles } from "@wrappid/styles"; | ||
import { MediumCoreStyles } from "@wrappid/core"; | ||
|
||
export const mediumAppStyles = { | ||
|
||
/************************************************** | ||
* Using mediumUtilityStyles example | ||
* eg. usingMediumUtilityStyles: { ...mediumUtilityStyles.anyUtilityStyle }, | ||
*************************************************/ | ||
testWrappidStyleClass: {/* your style goes here */} | ||
}; | ||
export class MediumModuleStyles extends MediumCoreStyles { | ||
constructor(){ | ||
super(); | ||
this.style = { | ||
/************************************************** | ||
* Using defaultUtilityStyles example | ||
*************************************************/ | ||
testWrappidStyleClass: { ...this.styles.devBorder }, | ||
}; | ||
} | ||
} |
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,13 @@ | ||
// -- import { smallUtilityStyles } from "@wrappid/styles"; | ||
import { SmallCoreStyles } from "@wrappid/core"; | ||
|
||
export const smallAppStyles = { | ||
/************************************************** | ||
* Using smallUtilityStyles example | ||
* eg. usingSmallUtilityStyles: { ...smallUtilityStyles.anyUtilityStyle }, | ||
*************************************************/ | ||
testWrappidStyleClass: {/* your style goes here */} | ||
}; | ||
export class SmallModuleStyles extends SmallCoreStyles { | ||
constructor(){ | ||
super(); | ||
this.style = { | ||
/************************************************** | ||
* Using smallUtilityStyles example | ||
*************************************************/ | ||
testWrappidStyleClass: { ...this.styles.devBorder }, | ||
}; | ||
} | ||
} |
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,13 @@ | ||
// -- import { xLargeUtilityStyles } from "@wrappid/styles"; | ||
import { XLargeCoreStyles } from "@wrappid/core"; | ||
|
||
export const xLargeAppStyles = { | ||
/************************************************** | ||
* Using xLargeUtilityStyles example | ||
* eg. usingXLargeUtilityStyles: { ...xLargeUtilityStyles.anyUtilityStyle }, | ||
*************************************************/ | ||
testWrappidStyleClass: {/* your style goes here */} | ||
}; | ||
export class XLargeModuleStyles extends XLargeCoreStyles { | ||
constructor(){ | ||
super(); | ||
this.style = { | ||
/************************************************** | ||
* Using XLargeUtilityStyles example | ||
*************************************************/ | ||
testWrappidStyleClass: { ...this.styles.devBorder }, | ||
}; | ||
} | ||
} |
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,13 @@ | ||
// -- import { xXLargeUtilityStyles } from "@wrappid/styles"; | ||
import { XXLargeCoreStyles } from "@wrappid/core"; | ||
|
||
export const xXLargeAppStyles = { | ||
/************************************************** | ||
* Using xXLargeUtilityStyles example | ||
* eg. usingXXLargeUtilityStyles: { ...xXLargeUtilityStyles.anyUtilityStyle }, | ||
*************************************************/ | ||
testWrappidStyleClass: {/* your style goes here */} | ||
}; | ||
export class XXLargeModuleStyles extends XXLargeCoreStyles { | ||
constructor(){ | ||
super(); | ||
this.style = { | ||
/************************************************** | ||
* Using XXLargeUtilityStyles example | ||
*************************************************/ | ||
testWrappidStyleClass: { ...this.styles.devBorder }, | ||
}; | ||
} | ||
} |