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
| { | |
| "cesVersion": "2.12.3", | |
| "projectName": "app", | |
| "packages": [ | |
| { | |
| "name": "expo-router", | |
| "type": "navigation", | |
| "options": { | |
| "type": "stack" | |
| } |
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
| pnpm dev --filter app | |
| > eververse@ dev /Users/haydenbleasel/GitHub/eververse | |
| > turbo dev "--filter" "app" | |
| turbo 2.0.11 | |
| • Packages in scope: app | |
| • Running dev in 1 packages | |
| • Remote caching disabled |
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
| figure, form, img, nav, div[aria-hidden], footer, aside:first-of-type, iframe { display: none !important; } | |
| aside { top: 0 !important; } | |
| aside:first-of-type + div { border-left: none; } | |
| main > div { background: white !important; } | |
| #main { padding-top: 0; } |
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
| .form { | |
| grid-column: 6 / 11; | |
| @media (--laptop) { | |
| grid-column: 1; | |
| } | |
| } | |
| .form.loading { | |
| opacity: 0.4; |
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 CountryPicker from 'react-native-country-picker-modal'; | |
| import PNF, { PhoneNumberUtil } from 'google-libphonenumber'; | |
| const [countryCode, setCountryCode] = useState('AU'); | |
| const [phoneNumber, setPhoneNumber] = useState(''); | |
| const phoneUtil = PhoneNumberUtil.getInstance(); | |
| function setCode ({ cca2 }) { | |
| setCountryCode(cca2); |
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
| .l-app .l-app--content { | |
| padding-bottom: 0; | |
| } | |
| main.au { | |
| padding-top: 121px; | |
| } | |
| .l-app .l-app--container { | |
| padding-top: 100px; |
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 links = document.querySelectorAll('a'); | |
| for (var i = 0; i < links.length; i++) { | |
| links[i].click(); | |
| } |
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
| if (!window.location.origin) { | |
| const { protocol, hostname, port } = window.location; | |
| window.location.origin = `${protocol}//${hostname}${port ? `:${port}` : ''}`; | |
| } |
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
| <!-- HTML5 Doctype. Remember to delete these comments (Quirks Mode). --> | |
| <!doctype html> | |
| <!-- HTML tag --> | |
| <html lang=""> | |
| <!-- Let's get started --> | |
| <head> | |
| <!-- Document settings and metadata --> |
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
| $('a').addClass('strikethrough').hover( | |
| (e) => $(e.target).stop().addClass('mouseenter'), | |
| (e) => { | |
| $(e.target).stop().removeClass('mouseenter').addClass('mouseleave'); | |
| setTimeout(() => { | |
| $(e.target).stop().removeClass('mouseleave').addClass('no-transition'); | |
| }, STIKETHROUGH_DURATION - STIKETHROUGH_OFFSET); | |
| setTimeout(() => { | |
| $(e.target).stop().removeClass('no-transition'); | |
| }, STIKETHROUGH_DURATION + STIKETHROUGH_OFFSET); |
NewerOlder