From f4291f9c03072ad58f39465ba6455e436a902143 Mon Sep 17 00:00:00 2001 From: Simon Jentsch Date: Mon, 14 Dec 2020 20:49:24 +0100 Subject: [PATCH] Message test --- src/components/Button.jsx | 2 +- src/components/Slider.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Button.jsx b/src/components/Button.jsx index 0640b28..ad3080a 100644 --- a/src/components/Button.jsx +++ b/src/components/Button.jsx @@ -2,7 +2,7 @@ import React from 'react'; import styled, { css } from 'styled-components'; const outlinedStyle = css` -color: #ed2186; +color: red; background-color: transparent; &:hover { background-color: #af1e6630; diff --git a/src/components/Slider.jsx b/src/components/Slider.jsx index 5c4c3a5..e17b585 100644 --- a/src/components/Slider.jsx +++ b/src/components/Slider.jsx @@ -17,7 +17,7 @@ const ActiveBar = styled.div` height: 6px; width: calc(${props => props.position}% - ${HANDLE_SIZE * 0.5}px); border-radius: 4px; - background-color: #af1e66; + background-color: red; border: 1px solid #af1e66; position: absolute; top: 0;