Skip to content

Instantly share code, notes, and snippets.

View AndlerRL's full-sized avatar
👨‍💻
All day focus

Roberto Lucas AndlerRL

👨‍💻
All day focus
View GitHub Profile
@AndlerRL
AndlerRL / tokens.json
Created October 6, 2022 20:19
figma-tokens demo test
{}

Keybase proof

I hereby claim:

  • I am andlerrl on github.
  • I am andlerrl (https://keybase.io/andlerrl) on keybase.
  • I have a public key ASD32zf4ENRZM1gDYhsMJyWqhoYFZZcBfjMz-j5RMmL9eAo

To claim this, I am signing this object:

@AndlerRL
AndlerRL / dBoard-table-types.ts
Last active June 16, 2022 06:38
This is the conceptualization of dBoard tables to create on the BE and the relation that these will have
interface DBoardProposal {
id: string
type: DBoardProposalTypeEnum
status: DBoardProposalStatusEnum
phase: DBoardProposalPhaseType
referendum: DBoardProposalReferendumType
creator: string // proposal creator
title: string
description: string
kpi: string
@AndlerRL
AndlerRL / GlobalStyles.js
Last active March 31, 2022 17:25
PowerStack Architecture - Theme
import React from 'react'
import { Global, css } from './index'
const GlobalStyles = ({ userTheme }) => (
<Global
styles={css`
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
box-sizing: border-box;