Skip to content

Commit

Permalink
feat: add styles to Uses page
Browse files Browse the repository at this point in the history
  • Loading branch information
martapanc committed Sep 26, 2023
1 parent df8de7e commit bbb0f33
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/(public)/uses/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import * as React from 'react';
import ReactMarkdown from 'react-markdown';

import './uses.css';

import Heading from '@/components/atoms/headings/Heading';

import { queryUsesPage } from '@/queries/uses-page';
Expand Down Expand Up @@ -37,7 +39,7 @@ const UsesPage = async () => {

{sections.map((section) => (
<div
className='mb-2'
className='uses-section mb-2'
aria-label={section.title}
key={section.title}
>
Expand Down
8 changes: 8 additions & 0 deletions src/app/(public)/uses/uses.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.uses-section p {
margin-bottom: 12px;
}

.uses-section p:before {
content: '◆ ';
margin-right: 4px;
}

0 comments on commit bbb0f33

Please sign in to comment.