diff --git a/components/Layers/Quarter/CardContent/CardContent.module.css b/components/Layers/Quarter/CardContent/CardContent.module.css
index fc3c834f..71958db5 100644
--- a/components/Layers/Quarter/CardContent/CardContent.module.css
+++ b/components/Layers/Quarter/CardContent/CardContent.module.css
@@ -15,26 +15,16 @@
position: relative;
svg {
position: relative;
- top: 0;
+ top: 2px;
left: 2px;
path {
fill: #000;
}
}
a {
- color: #000;
- height: 35px;
+ border-radius: 8px;
+ font-size: 16px;
width: 100%;
- background-color: #ffd400;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 6px;
- }
- a:hover {
- color: #000;
- path {
- fill: #000;
- }
+ text-align: center;
}
}
diff --git a/components/Layers/Quarter/CardContent/CardContent.tsx b/components/Layers/Quarter/CardContent/CardContent.tsx
index d6259128..4ef7b4ab 100644
--- a/components/Layers/Quarter/CardContent/CardContent.tsx
+++ b/components/Layers/Quarter/CardContent/CardContent.tsx
@@ -1,4 +1,5 @@
import { QuarterObject } from 'components/Layers/Quarter/quarterObject';
+import { Button, ButtonSize, ButtonType } from 'components/UI/Button/Button';
import { Header } from 'components/UI/Card/components/Header/Header';
import { Info } from 'components/UI/Card/components/Info/Info';
import { Section } from 'components/UI/Card/components/Section/Section';
@@ -21,10 +22,19 @@ export function QuarterCardContent({ placemark }: QuarterCardContentProps) {