Skip to content

Instantly share code, notes, and snippets.

View lhermann's full-sized avatar

Lukas Hermann lhermann

View GitHub Profile
@lhermann
lhermann / dabblet.css
Created November 14, 2012 23:22
Horizontal Divider
/**
* Horizontal Divider
*/
body {
background: #f2f2f2;
min-height: 100%;
}
#testarea {
margin-left: auto;
margin-right: auto;
@lhermann
lhermann / dabblet.css
Created December 16, 2012 14:54
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body {
background-color: #f2f2f2;
}
#test {
margin-left: auto;
margin-right: auto;
margin-top: 60px;
@lhermann
lhermann / AdvancedSelect.vue
Created January 29, 2024 09:43
Vue Timezone Picker
<template>
<!-- Select Button -->
<button
ref="referenceRef"
class="flex items-center gap-3 rounded h-10 px-4"
:class="{
'border text-black' : !props.dark,
'border bg-neutral-800 border-neutral-600 text-white' : props.dark,
'opacity-40': disabled,
}"