PHP Classes

File: frontend/src/components/SimpleShopCard/style.ts

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

Contents

Class file image Download
import styled from "styled-components"; export const StyledCardShopClean = styled.div` display: flex; flex-direction: column; align-items: flex-start; padding: 3px; width: 330px; height: 378px; background: var(--transpaernt); overflow: hidden; border: 1px solid var(--grey-6); border-radius: 3px; text-decoration:none; .card-shop-clean { position: relative; width: 100%; height: 100%; } .link { text-decoration:none; height: 88%; width: 100%; } .card-img { width: 100%; height: 88%; } .card-details { padding: 10px 10px; } .text-title { font-size: 1.5em; font-weight: bold; color: var(--white); } .card:hover { border-color: var(--primary-color); } @media (max-width: 1024px) { width: 330px; height: 378px; .link { height: 80%; } .card-img { height: 100%; } .text-title { font-size: 1.1em; } } `;