summaryrefslogtreecommitdiffstats
path: root/finished-application/frontend/components/styles/SickButton.js
diff options
context:
space:
mode:
Diffstat (limited to 'finished-application/frontend/components/styles/SickButton.js')
-rw-r--r--finished-application/frontend/components/styles/SickButton.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/finished-application/frontend/components/styles/SickButton.js b/finished-application/frontend/components/styles/SickButton.js
deleted file mode 100644
index 5b5352e..0000000
--- a/finished-application/frontend/components/styles/SickButton.js
+++ /dev/null
@@ -1,20 +0,0 @@
-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);
- display: inline-block;
- transition: all 0.5s;
- &[disabled] {
- opacity: 0.5;
- }
-`;
-
-export default SickButton;