mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-06 00:14:18 -07:00
* Update copy on site based on living copy document * Updates copy from living doc v2 - updates shots * Update styling to sidepanel - make indicator heading white - change bg color of add'nl indicators 'FAFAFA' * Separate dataset cards sections by style - abstract out additional cards color to utils - create a baseCard mixin - add datasetCardAdditional style block - add additionalIndicator prop to DatasetCard - lower abstaction of GridContainer from methodology to DatasetContainer - updates snapshot * Swap resolution and source in dataset cards - update snapshots * Update SVGs on About page - re-center the SVGs to content vertically
19 lines
673 B
TypeScript
19 lines
673 B
TypeScript
declare namespace DatasetCardScssNamespace {
|
|
export interface IDatasetCardScss {
|
|
datasetCard: string;
|
|
datasetCardAdditional:string;
|
|
datasetCardIndicator:string;
|
|
datasetCardWhatIsIt: string;
|
|
datasetCardDescription: string;
|
|
datasetCardLabels: string;
|
|
datasetCardList: string;
|
|
datasetCardListItem: string;
|
|
}
|
|
}
|
|
|
|
declare const DatasetCardScssModule: DatasetCardScssNamespace.IDatasetCardScss & {
|
|
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
|
|
locals: DatasetCardScssNamespace.IDatasetCardScss;
|
|
};
|
|
|
|
export = DatasetCardScssModule;
|