Skip to content
Snippets Groups Projects
Commit 1cbaa197 authored by Alf Eaton's avatar Alf Eaton
Browse files

Rename .css files to .scss

parent 9488240f
No related branches found
No related tags found
No related merge requests found
Showing
with 10 additions and 10 deletions
import React from 'react'
import classnames from 'classnames'
import classes from './Checkbox.local.css'
import classes from './Checkbox.local.scss'
const Checkbox = ({ inline, name, value, label, checked, required, onChange }) => (
<label className={classnames(classes.root, {
......
File moved
import React from 'react'
import classes from './File.local.css'
import classes from './File.local.scss'
const extension = ({ name }) => name.replace(/^.+\./, '')
......
File moved
import React from 'react'
import classnames from 'classnames'
import classes from './Menu.local.css'
import classes from './Menu.local.scss'
// TODO: match the width of the container to the width of the widest option?
......
File moved
import React from 'react'
import classnames from 'classnames'
import classes from './Radio.local.css'
import classes from './Radio.local.scss'
const Radio = ({ inline, name, value, label, checked, required, onChange }) => (
<label className={classnames(classes.root, {
......
File moved
import React from 'react'
import ReactTags from 'react-tag-autocomplete'
import './Tags.css'
import './Tags.scss'
// TODO: separate tags when pasted
// TODO: allow tags to be edited
......
File moved
import React from 'react'
import classes from './TextField.local.css'
import classes from './TextField.local.scss'
const TextField = ({ label, name, placeholder, required, type = 'text', value, onChange }) => (
<label className={classes.root}>
......
File moved
import React from 'react'
import classes from './UploadingFile.local.css'
import classes from './UploadingFile.local.scss'
// TODO: cancel button
......
import React from 'react'
import classnames from 'classnames'
import classes from './ValidatedField.local.css'
import classes from './ValidatedField.local.scss'
// TODO: pass ...props.input to children automatically?
......
import React from 'react'
import { Link } from 'react-router'
import classnames from 'classnames'
import classes from './AppBar.local.css'
import classes from './AppBar.local.scss'
const AppBar = ({ brandLink, brandName, loginLink, logoutLink, userName }) => (
<div className={classes.root}>
......
File moved
import React from 'react'
import classes from './Files.local.css'
import classes from './Files.local.scss'
import Upload from './Upload'
import File from '../atoms/File'
......
File moved
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment