Skip to content

Instantly share code, notes, and snippets.

View needim's full-sized avatar
🎯
Focusing

Nedim Arabacı needim

🎯
Focusing
View GitHub Profile
@needim
needim / mediaqueries.css
Last active April 4, 2024 23:23
Device Specific CSS Media Queries Collection
/*
Based on:
1. http://stephen.io/mediaqueries
2. https://css-tricks.com/snippets/css/media-queries-for-standard-devices/
*/
/* iPhone X in portrait & landscape */
@media only screen
and (min-device-width : 375px)
and (max-device-width : 812px)
@needim
needim / mood.tsx
Created June 13, 2024 11:16
Mood notoemoji
import { cn } from "@/lib/utils";
import { Tooltip } from "@radix-ui/themes";
import React, { memo, useState } from "react";
function MoodEmoji({
mood,
selected = false,
className,
variant = "default",
onClick,