Skip to content

Commit

Permalink
feat(Dimmer): hide cursor
Browse files Browse the repository at this point in the history
  • Loading branch information
benji6 committed Dec 21, 2023
1 parent d0a95b8 commit 8a7899d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
align-items: center;
background: black;
bottom: 0;
cursor: none;
display: flex;
justify-content: center;
left: 0;
Expand Down
4 changes: 2 additions & 2 deletions client/src/components/pages/Meditation/Meditate/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { Button, Paper, TextField } from "eri";
import * as React from "react";
import { useNavigate } from "react-router-dom";
import {
ERRORS,
Expand All @@ -8,14 +7,15 @@ import {
TIME,
} from "../../../../constants";
import "./style.css";
import { useState } from "react";

const MAX_MINUTES = 180;
const MINUTES_INPUT_NAME = "minutes";
const TIMES = [1, 2, 3, 5, 10, 15, 20, 30, 40];

export default function Meditate() {
const navigate = useNavigate();
const [error, setError] = React.useState("");
const [error, setError] = useState("");

const navigateToTimer = (minutes: number): void =>
void navigate(
Expand Down

0 comments on commit 8a7899d

Please sign in to comment.