Skip to content

Commit ad6ce08

Browse files
docs: fix styles for missing cards (#1048)
## Description <!-- Provide a concise and descriptive summary of the changes implemented in this PR. --> ### Introduces a breaking change? - [ ] Yes - [x] No ### Type of change - [ ] Bug fix (change which fixes an issue) - [ ] New feature (change which adds functionality) - [x] Documentation update (improves or adds clarity to existing documentation) - [ ] Other (chores, tests, code style improvements etc.) ### Tested on - [ ] iOS - [ ] Android ### Testing instructions <!-- Provide step-by-step instructions on how to test your changes. Include setup details if necessary. --> ### Screenshots <!-- Add screenshots here, if applicable --> ### Related issues <!-- Link related issues here using #issue-number --> ### Checklist - [ ] I have performed a self-review of my code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have updated the documentation accordingly - [ ] My changes generate no new warnings ### Additional notes <!-- Include any additional information, assumptions, or context that reviewers might need to understand this PR. -->
1 parent b0035ff commit ad6ce08

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/src/components/ReactNativeExecuTorchFeatures/ReactNativeExecuTorchFeatureItem/styles.module.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
.featureItem {
2-
background-color: var(--swm-flame-0);
3-
box-shadow: -12px 12px 0px var(--swm-flame-80);
2+
background-color: var(--swm-cornflower-0);
3+
box-shadow: -12px 12px 0px var(--swm-cornflower-80);
44
flex: 1;
55
padding: 1.5em;
66
}
77

88
[data-theme='dark'] .featureItem {
9-
background-color: var(--swm-flame-60);
10-
box-shadow: -12px 12px 0px var(--swm-flame-80);
9+
background-color: var(--swm-cornflower-60);
10+
box-shadow: -12px 12px 0px var(--swm-cornflower-80);
1111
}
1212

1313
[data-theme='dark'] .featureTitle,

docs/src/components/ReactNativeExecuTorchFeatures/styles.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
}
2525

2626
[data-theme='dark'] .featuresButton:hover {
27-
background-color: var(--swm-flame-100);
28-
border-color: var(--swm-flame-100);
27+
background-color: var(--swm-cornflower-100);
28+
border-color: var(--swm-cornflower-100);
2929
color: var(--swm-off-white);
3030
}
3131

0 commit comments

Comments
 (0)