diff --git a/src/components/Queue/QueueContainer.css b/src/components/Queue/QueueContainer.css index 298f8301..2ddcc5dc 100644 --- a/src/components/Queue/QueueContainer.css +++ b/src/components/Queue/QueueContainer.css @@ -14,66 +14,6 @@ body { align-items: center; } -.statusMenu { - display: flex; - flex-direction: row; - list-style: none; - align-items: center; -} - -.statusMenu li { - display: flex; - flex-direction: column; - align-items: center; -} - -.statusMenu button { - outline: none; - border: none; - background-color: var(--default-background); - font-size: 1em; -} - - -.statusMenu li:not(:first-child) button{ - border-left: 1px solid black; -} - -.statusMenu li:after { - content: ""; - display: block; - color: var(--default-background); - border-bottom: thick solid; - width: 90%; -} - -.statusMenu .selectedTab:after { - content: ""; - display: block; - color: var(--light-blue); - border-bottom: thick solid; - animation-duration: .3s; - animation-name: slidein; -} - - -@keyframes slidein { - from { - width: 0%; - } - - to { - width: 90%; - } - -} - - -.statusMenu > button { - border: none; - margin: 0; -} - .search-container input { padding: 2px; border: none; diff --git a/src/components/Queue/QueueContainer.jsx b/src/components/Queue/QueueContainer.jsx index f0586fc3..d027b4d7 100644 --- a/src/components/Queue/QueueContainer.jsx +++ b/src/components/Queue/QueueContainer.jsx @@ -3,6 +3,8 @@ import dummyData from '../dummyData'; import PrintCardContainer from './components/PrintCardContainer'; import './QueueContainer.css'; import SearchBar from './components/SearchBar'; +import MenuBar from '../globalStyles/MenuBar'; +import { MenuTabs } from '../globalStyles/MenuTabs'; const QueueContainer = () => { const [data] = useState(dummyData); @@ -49,20 +51,14 @@ const QueueContainer = () => { )); + const setStatus = (view) => { + setStatusView(view); + } + return (
-
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
+