Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion frontend/src/components/AddButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ export function AddButton({
size="md"
onClick={() => onClick({})}
bg="secondary"
c="primary"
style={{
outlineOffset: "2px",
outline: "1px solid var(--mantine-color-secondary-1)",
Expand Down
12 changes: 4 additions & 8 deletions frontend/src/components/SubmissionFeed/Item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,13 @@ export function Item({ data }: ItemProps) {
<Card
withBorder
padding="md"
bg={"secondary"}
style={
{
// border: 'solid 2px var(--mantine-color-secondary-text)',
// boxShadow: '0px 2px 4px rgba(0, 0, 0, 0.25)',
}
}
style={{
border: "solid 1px var(--mantine-color-secondary-1)",
}}
>
<Stack>
<ScrollArea.Autosize type="auto" mah={200}>
<Text c="white">{data.content}</Text>
<Text>{data.content}</Text>
</ScrollArea.Autosize>
<Group variant="noflip">
{data?.feature?.geometry?.coordinates?.length === 2 && (
Expand Down