summaryrefslogtreecommitdiffstats
path: root/frontend/components/styles/SickButton.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/components/styles/SickButton.js')
-rw-r--r--frontend/components/styles/SickButton.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/frontend/components/styles/SickButton.js b/frontend/components/styles/SickButton.js
new file mode 100644
index 0000000..3bd5001
--- /dev/null
+++ b/frontend/components/styles/SickButton.js
@@ -0,0 +1,15 @@
+import styled from 'styled-components';
+
+const SickButton = styled.button`
+ background: red;
+ color: white;
+ font-weight: 500;
+ border: 0;
+ border-radius: 0;
+ text-transform: uppercase;
+ font-size: 2rem;
+ padding: 0.8rem 1.5rem;
+ transform: skew(-2deg);
+`;
+
+export default SickButton;