PHP Classes

File: frontend/src/components/Routes/Login/style.ts

Recommend this page to a friend!
  Classes of carlos carvalho   yrprey PHP application   frontend/src/components/Routes/Login/style.ts   Download  
File: frontend/src/components/Routes/Login/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,373 bytes
 

Contents

Class file image Download
import styled from "styled-components"; export const StyledLoginSection = styled.div` width: 100%; height: auto; display: flex; justify-content: center; align-items: center; flex-direction: column; margin: 0 auto; max-width: 1280px; .container { display: flex; justify-content: center; width: 100%; padding: 140px 40px; } .container-left { display: flex; justify-content: flex-start; flex-direction: column; width: 50%; gap: 70px; } .container-left .content-up { display: flex; flex-direction: column; gap: 20px; } .container-left .content-up h1 { font-weight: 700; font-size: 28px; line-height: 32px; color: var(--white); } .container-left .content-up span { font-weight: 700; font-size: 28px; line-height: 32px; background: var(--gradient-color); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .container-right { display: flex; justify-content: center; width: 50%; } @media (max-width: 1024px) { .container { padding: 40px 5vw; } .container-left { width: 100%; } .container-left .content-up { gap: 16px; } .container-left .content-up h1 { font-size: 24px; } .container-left .content-up span { font-size: 24px; } .container-right { display: none; } } `;