diff --git a/app/app.global.scss b/app/app.global.scss index 0a946033..e1413042 100644 --- a/app/app.global.scss +++ b/app/app.global.scss @@ -72,4 +72,31 @@ body { 100% { transform: rotate(360deg); } -} \ No newline at end of file +} + +// buttons + +.buttonPrimary { + -webkit-user-select: none; + cursor: pointer; + display: block; + padding-left: 30px; + padding-right: 30px; + padding-top: 18px; + padding-bottom: 15px; + border-radius: 2px; + text-align: center; + font-size: 18px; + transition: none; + position: relative; + color: white; + background-color: $main; + box-shadow: 0 3px 0 0 $darkestgrey; + margin-bottom: 5px; + + &:active { + box-shadow: inset 0 1px 1px 1px $darkestgrey; + transform: translate(0px, 3px); + outline: 0; + } +} diff --git a/app/routes/channels/components/Channels.js b/app/routes/channels/components/Channels.js index b3b692c4..5b6bbb57 100644 --- a/app/routes/channels/components/Channels.js +++ b/app/routes/channels/components/Channels.js @@ -1,5 +1,6 @@ import React, { Component } from 'react' import PropTypes from 'prop-types' +import { FaAlignJustify, FaThLarge } from 'react-icons/lib/fa' import { MdSearch } from 'react-icons/lib/md' import styles from './Channels.scss' @@ -16,7 +17,7 @@ class Channels extends Component { return (