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
| mΒ³ |
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
| dasd |
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
| <div class="card"> | |
| <!-- header component nishi --> | |
| <div class="card-header"> | |
| <div class="some-dummy"> | |
| {{ asn.asnId }} | |
| </div> | |
| </div> | |
| <hr /> |
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 url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"); |
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
| <div class="header"> | |
| <div class="header-user"> | |
| <p>Chimeny</p> | |
| </div> | |
| <div class="header-logo"> | |
| <img src="../assets/logo.svg" alt="costco" /> | |
| </div> | |
| <div class="header-drop"> | |
| <p>Drop down</p> | |
| </div> |
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 "../globals"; | |
| .process { | |
| width: 500px; | |
| min-height: 550px; | |
| margin-right: 10rem; | |
| display: flex; | |
| flex-direction: column; | |
| justify-content: space-evenly; | |
| align-items: center; |
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"; | |
| import Lottie from "react-lottie"; | |
| import animationData from "../loading.json"; | |
| import { useSelector } from "react-redux"; | |
| import "./process.scss"; | |
| function Process() { | |
| const [play, setPlay] = useState(false); | |
| const state = useSelector((state) => state.ProcessReducer); |
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
| var aes256 = require("aes256"); | |
| var key = "obvwoqcbv21801f19d0zibcoavwpnq"; | |
| export const DoEncrypt = (text) => { | |
| var encrypted = aes256.encrypt(key, text); | |
| return encrypted; | |
| }; | |
| export const DoDecrypt = (cipher, username) => { | |
| if (cipher.startsWith("Welcome")) { |
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 "../globals"; | |
| @mixin scrollbars( | |
| $size, | |
| $foreground-color, | |
| $background-color: mix($foreground-color, white, 50%) | |
| ) { | |
| // For Google Chrome | |
| &::-webkit-scrollbar { | |
| width: $size; | |
| height: $size; |
NewerOlder

