PHP Classes

File: frontend/src/components/Routes/Transactions/CardTransation/style.ts

Recommend this page to a friend!
  Classes of carlos carvalho   yrprey PHP application   frontend/src/components/Routes/Transactions/CardTransation/style.ts   Download  
File: frontend/src/components/Routes/Transactions/CardTransation/style.ts
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: yrprey PHP application
Web app to learn about OWASP API vulnerabilities
Author: By
Last change:
Date: 3 months ago
Size: 1,117 bytes
 

Contents

Class file image Download
import styled from "styled-components"; export const StyledCardTransactionsSection = styled.div` width: 100%; .card-table { display: flex; justify-content: space-between; align-items: center; width: 100%; height: 78px; padding: 15px 30px; border-bottom: 0.5px solid var(--grey-4); border-top: 0.5px solid var(--grey-4); } .title { text-decoration: none; font-weight: 500; font-size: 16px; line-height: 16px; color: var(--grey-2); transition: all ease } .value { text-decoration: none; font-weight: 900; font-size: 16px; line-height: 16px; color: var(--grey-2); transition: all ease } .content-user { display: flex; flex-direction: row; gap: 8px; align-items: center; } .user-transaction { width: 44px; height: 44px; border-radius: 9999px; border: 2px solid var(--quartenary-color); background-color: var(--tertiary-color) } @media (max-width: 1024px) { .card-table { padding: 15px 10px; } .title { font-size: 14px; } .value { font-size: 14px; } } `;