PHP Classes

File: frontend/src/components/Tabs/AllTabs/SecondTab/style.ts

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

Contents

Class file image Download
import styled from "styled-components"; export const StyledSecondTab = styled.div` display: flex; flex-direction: column; gap: 32px; p { font-weight: 500; font-size: 16px; line-height: 26px; color: var(--grey-2); text-align: justify; } .link { color: var(--primary-color); text-decoration: none; :hover { color: var(--secondary-color); text-decoration: underline; } } .topic { display: flex; flex-direction: row; gap: 30px; } .topic div { display: flex; flex-direction: column; gap: 20px; } .topic .icon { width: 20px; height: 20px; color: var(--primary-color); } .topic p { display: flex; align-items: center; font-weight: 500; font-size: 16px; line-height: 16px; color: var(--white); } @media (max-width: 1024px) { gap: 24px; p { font-weight: 500; font-size: 14px; line-height: 26px; color: var(--grey-2); text-align: justify; } .topic { gap: 24px; } .topic div { gap: 24px; } .topic p { font-size: 14px; } } `;