実際に業務で利用したことのあるスキル群です。以下のものであれば特にサポート無しに業務で利用できます。
- HTML5
- EJS
実際に業務で利用したことのあるスキル群です。以下のものであれば特にサポート無しに業務で利用できます。
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' |