Skip to content

Commit

Permalink
Re-add and separate Record/Records CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
LocalNewsTV committed Nov 5, 2024
1 parent 4bfa4af commit f460698
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
36 changes: 36 additions & 0 deletions app/src/UI/Overlay/Records/Record.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
.selectedFormTab {
border-bottom-style: solid !important;
border-width: 0.5vh !important;
border-color: var(--bc-yellow) !important;
}

.records__activity__photos_button {
height: 5vh;
border-color: black;
border-radius: 0px !important;
background-color: var(--bc-blue) !important;
}

.records__activity__form_button {
height: 5vh;
border-color: black;
border-radius: 0px !important;
background-color: var(--bc-blue) !important;
}

.records__activity__map_button {
height: 5vh;
border-color: black;
border-radius: 0px !important;
background-color: var(--bc-blue) !important;
}

.records__activity_buttons {
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
& > button {
height: 20pt;
}
}
2 changes: 1 addition & 1 deletion app/src/UI/Overlay/Records/Record.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useRef } from 'react';

import './Records.css';
import './Record.css';
import { Route, useHistory } from 'react-router';
import { useSelector } from 'react-redux';
import { ActivityForm } from './Activity/Form';
Expand Down

0 comments on commit f460698

Please sign in to comment.