summaryrefslogtreecommitdiff
path: root/src/frontend/styles/Cart.styled.ts
diff options
context:
space:
mode:
authorSaumit <justsaumit@protonmail.com>2025-09-27 02:14:26 +0530
committerSaumit <justsaumit@protonmail.com>2025-09-27 02:14:26 +0530
commit82e03978b89938219958032efb1448cc76baa181 (patch)
tree626f3e54d52ecd49be0ed3bee30abacc0453d081 /src/frontend/styles/Cart.styled.ts
Initial snapshot - OpenTelemetry demo 2.1.3 -f
Diffstat (limited to 'src/frontend/styles/Cart.styled.ts')
-rw-r--r--src/frontend/styles/Cart.styled.ts89
1 files changed, 89 insertions, 0 deletions
diff --git a/src/frontend/styles/Cart.styled.ts b/src/frontend/styles/Cart.styled.ts
new file mode 100644
index 0000000..e8348cf
--- /dev/null
+++ b/src/frontend/styles/Cart.styled.ts
@@ -0,0 +1,89 @@
+// Copyright The OpenTelemetry Authors
+// SPDX-License-Identifier: Apache-2.0
+
+import styled from 'styled-components';
+import Button from '../components/Button';
+
+export const Cart = styled.div`
+ margin: 24px;
+
+ ${({ theme }) => theme.breakpoints.desktop} {
+ margin: 100px;
+ }
+`;
+
+export const Container = styled.div`
+ display: flex;
+ flex-direction: column;
+ gap: 24px;
+`;
+
+export const CarTitle = styled.h1`
+ margin: 0;
+`;
+
+export const Header = styled.div`
+ margin-bottom: 50px;
+ display: flex;
+ flex-direction: column;
+ gap: 5px;
+ align-items: start;
+
+ ${({ theme }) => theme.breakpoints.desktop} {
+ flex-direction: row;
+ justify-content: space-between;
+ align-items: center;
+ }
+`;
+
+export const Title = styled.h1`
+ text-align: center;
+ margin: 0;
+ font-size: ${({ theme }) => theme.sizes.mLarge};
+
+ ${({ theme }) => theme.breakpoints.desktop} {
+ font-size: ${({ theme }) => theme.sizes.dLarge};
+ }
+`;
+
+export const Subtitle = styled.h3`
+ text-align: center;
+ margin: 0;
+ font-size: ${({ theme }) => theme.sizes.mMedium};
+ color: ${({ theme }) => theme.colors.textLightGray};
+
+ ${({ theme }) => theme.breakpoints.desktop} {
+ font-size: ${({ theme }) => theme.sizes.dMedium};
+ }
+`;
+
+export const ButtonContainer = styled.div`
+ display: flex;
+ justify-content: center;
+ align-items: center;
+`;
+
+export const EmptyCartContainer = styled.div`
+ display: flex;
+ flex-direction: column;
+ gap: 28px;
+ align-items: center;
+ justify-content: center;
+ margin-bottom: 120px;
+ margin-top: 24px;
+
+ ${({ theme }) => theme.breakpoints.desktop} {
+ display: grid;
+ grid-template-columns: auto;
+ }
+`;
+
+export const EmptyCartButton = styled(Button)`
+ font-weight: ${({ theme }) => theme.fonts.regular};
+ color: ${({ theme }) => theme.colors.otelRed};
+ padding: 0;
+
+ ${({ theme }) => theme.breakpoints.desktop} {
+ width: inherit;
+ }
+`;