Skip to content

Instantly share code, notes, and snippets.

View jgwerner's full-sized avatar
🙃

Greg Werner jgwerner

🙃
View GitHub Profile
@jgwerner
jgwerner / illumidesk-global-style
Created June 8, 2021 18:10
Global style sheet for IllumiDesk
@import "~antd/lib/style/color/colors.less";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;500;700;900&display=swap&css');
body{
font-family: 'Inter', sans-serif;
}
:global(.site-layout) :global(.site-layout-background) {
background: @white;
position: relative;
@jgwerner
jgwerner / illumidesk-local-style-sheet
Created June 8, 2021 18:12
IllumiDesk custom style sheet
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
@import "~antd/lib/style/color/colors.less";
@theme: default;
// The prefix to use on all css classes from ant.
@ant-prefix: ant;
// An override for the html selector for theme prefixes
@html-selector: html;

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@jgwerner
jgwerner / main_gpt.tf
Created February 23, 2023 22:28
Example output of a main.tf file created by ChatGPT
provider "aws" {
region = "us-west-2"
}
resource "aws_vpc" "example" {
cidr_block = "10.0.0.0/16"
tags = {
Name = "example-vpc"
}
}