This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .base { | |
| position: relative; | |
| width: 100%; | |
| overflow: hidden; | |
| } | |
| .span { | |
| position: absolute; | |
| bottom: 5px; | |
| left: 10px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { FormEvent } from "react"; | |
| export type IRef = HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement| null; | |
| interface Iresponse { | |
| [key:string]: { | |
| value: string; | |
| valid: boolean; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { useState } from 'react'; | |
| const useWindow = (): {isMobile:boolean, isTablet:boolean, isDesktop:boolean} => { | |
| const [isMobile, setIsMobile] = useState(false); | |
| const [isTablet, setIsTablet] = useState(false); | |
| const [isDesktop, setIsDesktop] = useState(true); | |
| React.useEffect(() => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface IValue { | |
| value: string; | |
| key: string; | |
| } | |
| class localStorageList { | |
| values: IValue[] = []; | |
| key: string; | |
| constructor(key: string) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* this is the css file for the variables.css file */ | |
| :root { | |
| --primary: #36393f; | |
| --primary-dark: #2f3136; | |
| --secondary: mediumseagreen; /* navbars */ | |
| --secondary-dark: rgb(40, 122, 77); | |
| --tertiary: #34568B; | |
| --tertiary-dark: #29446e; | |
| --quaternary: #FF6F61; | |
| --quaternary-dark: #cc564b; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| margin: 0; | |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', | |
| 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', | |
| sans-serif; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .base { | |
| position: fixed; | |
| bottom: 0; | |
| right: 0; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| margin: 1rem; | |
| width: 20rem; | |
| height: 5rem; |
OlderNewer