Skip to content

Instantly share code, notes, and snippets.

@ryu-f
ryu-f / index.md
Last active February 24, 2020 05:20

スキルセット

業務で利用したことのあるスキル

実際に業務で利用したことのあるスキル群です。以下のものであれば特にサポート無しに業務で利用できます。

HTML

@ryu-f
ryu-f / setStyles.ts
Last active September 6, 2019 09:24
const reUnit = /width|height|top|left|right|bottom|margin|padding/i
type setStyleProps = {
node: HTMLElement
att: string
val: string
style: {}
}
const setStyle = ({ node, att, val, style }: setStyleProps) => {
import { css } from 'styled-components'
type MediaQuery = {
[key: string]: string
}
const mediaQuery: MediaQuery = {
desktop: 'min-width:1025px',
tablet: 'max-width:1024px',
mobile: 'max-width:750px'