Skip to content

Instantly share code, notes, and snippets.

View valencia12's full-sized avatar
🏠
Working from home

Jorge Valencia valencia12

🏠
Working from home
  • Stefanini LATAM
View GitHub Profile
@DanielCeron-dc
DanielCeron-dc / Navbar.tsx
Last active October 3, 2021 00:03
Navbar on react with sticky
import React, { CSSProperties } from "react";
const style: CSSProperties = {
backgroundColor: "var(--secondary)",
height: 50,
width: "100%",
display: "flex",
position: "sticky",
top: 0,
left: 0,