Skip to content

Instantly share code, notes, and snippets.

View Maransatto's full-sized avatar

Fernando Silva Maransatto Maransatto

View GitHub Profile
@Maransatto
Maransatto / README.md
Created August 2, 2022 19:17 — forked from ayr-ton/README.md
Agile Snippets

Agile Snippets

Jira

bug

{panel:title = *Business Context*}
Xxx
{panel} 
@Maransatto
Maransatto / introducao-react-index.css
Last active April 25, 2025 11:08
Introdução React index.css
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
min-height: 100vh;
font-family: "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 18px;
@Maransatto
Maransatto / Customer.module.css
Created February 12, 2025 00:08
Youtube React: Customer Module
.customer {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 16px;
margin: 16px;
text-align: left;
}
.name {
@Maransatto
Maransatto / CustomerList.module.css
Last active February 13, 2025 16:50
React Event Listeners e useState
.customers {
list-style: none;
max-width: 50rem;
margin: 1rem auto;
padding: 1rem 0;
display: grid;
grid-template-columns: repeat(3, 30%);
gap: 1rem;
justify-content: center;
}