Skip to content

Instantly share code, notes, and snippets.

View Luan4560's full-sized avatar
🎯
Focusing

Luan Nascimento de Santana Luan4560

🎯
Focusing
View GitHub Profile
@Luan4560
Luan4560 / Vs CodeConfig
Last active July 14, 2020 16:54
Config VSCODE
{
"terminal.integrated.fontSize": 14,
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"editor.fontSize": 18,
"editor.lineHeight": 26,
"editor.fontFamily": "Fira Code",
import styled, { css } from 'styled-components';
interface ContainerProps {
isFocused: boolean;
isFilled: boolean;
isErrored: boolean;
}
export const Container = styled.div<ContainerProps>`
background: #fff;