We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e598273 commit 4a1601bCopy full SHA for 4a1601b
src/components/Projects/ProjectsList.module.css
@@ -1,3 +1,7 @@
1
.card {
2
+ margin-top: 1rem;
3
+}
4
+
5
+.container {
6
padding: 0.75rem;
7
}
src/components/Projects/ProjectsList.tsx
@@ -94,8 +94,8 @@ export default function ProjectsList() {
94
{data?.map((item) => {
95
const namespace = projectnameToNamespace(item);
96
return (
97
- <Card key={item}>
98
- <div className={styles.card}>
+ <Card key={item} className={styles.card}>
+ <div className={styles.container}>
99
<Button
100
design={ButtonDesign.Transparent}
101
onClick={() => {
0 commit comments