- Recently assigned
- {{[[query]]: {and: [[TODO]] {not: {or: [[Today]] [[Upcoming]] [[Later]] [[Template]] [[query]]]}}}}}
- Today
- {{[[query]]: {and: [[TODO]] [[Today]] {not: {or: [[Template]] [[query]]]}}}}}
- Upcoming
- {{[[query]]: {and: [[TODO]] [[Upcoming]] {not: {or: [[Template]] [[query]]]}}}}}
- Later
- {{[[query]]: {and: [[TODO]] [[Later]] {not: {or: [[Template]] [[query]]]}}}}}
This file contains 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
#!/usr/bin/osascript | |
# Required parameters: | |
# @raycast.schemaVersion 1 | |
# @raycast.title Open Selected Text In Root Search | |
# @raycast.mode silent | |
# Optional parameters: | |
# @raycast.icon 🔍 | |
# @raycast.packageName open-selected-text |
This file contains 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
/** | |
* Get and write the user settings | |
*/ | |
export const useSettings = () => { | |
const { authUser } = useFirestoreUser(); | |
const [settings, setSettings] = useState(""); | |
/* Default settings */ | |
const defaultSettings = { | |
hideFloatingHelpIcon: { |
This file contains 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
{"lastUpload":"2020-05-01T19:06:41.818Z","extensionVersion":"v3.4.3"} |
This file contains 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
:root { | |
--font-size: 15.5px; | |
--font-color: hsl(205, 23%, 16%); | |
--font-color-lighter: hsl(0, 0%, 40%); | |
--font-color-placeholder: hsl(0, 0%, 70%); | |
--link-color: hsl(203, 82%, 35%); | |
--selection-color: hsl(203, 100%, 74%); | |
--border-color: rgba(0, 0, 0, 0.08); | |
--subtle-border-color: rgba(0, 0, 0, 0.05); | |
--main-background-color: hsl(210, 9%, 98%); |
This file contains 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
.kanban-board { | |
background-color: #f2f5f9; | |
max-height: 600px; | |
overflow-x: auto; | |
overflow-y: auto; | |
} | |
.kanban-column { | |
background-color: transparent; | |
} |
- Recently assigned
- {{[[query]]: {and: [[TODO]] {not: {or: [[Today]] [[Upcoming]] [[Later]] [[Template]] [[query]]]}}}}}
- Today
- {{[[query]]: {and: [[TODO]] [[Today]] {not: {or: [[Template]] [[query]]]}}}}}
- Upcoming
- {{[[query]]: {and: [[TODO]] [[Upcoming]] {not: {or: [[Template]] [[query]]]}}}}}
- Later
- {{[[query]]: {and: [[TODO]] [[Later]] {not: {or: [[Template]] [[query]]]}}}}}
This file contains 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
{"lastUpload":"2020-11-22T16:32:39.038Z","extensionVersion":"v3.4.3"} |
This file contains 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 * as React from "react" | |
import { useState } from "react" | |
import { Frame, addPropertyControls, ControlType } from "framer" | |
import styled, { css } from "styled-components" | |
import MaterialIcon from "material-icons-react" | |
addPropertyControls(ChromeKit, { | |
link: { type: ControlType.String, title: "Link" }, | |
tabs: { type: ControlType.Number, title: "Number of open tabs" }, | |
themecolor: { type: ControlType.Color, title: "Theme Color" }, |
This file contains 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
<app-header-bg [background]="'/assets/geometry-bg-white.png'" [dark]="false"></app-header-bg> | |
<section class="fdb-block pb-0"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col"> | |
<h1>Pricing Plans</h1> | |
<p class="text-h3">Find the right package for your service</p> | |
</div> | |
</div> | |
</div> |
NewerOlder