This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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, | |
}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
body { | |
background-color: #f2f2f2; | |
} | |
#test { | |
margin-left: auto; | |
margin-right: auto; | |
margin-top: 60px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Horizontal Divider | |
*/ | |
body { | |
background: #f2f2f2; | |
min-height: 100%; | |
} | |
#testarea { | |
margin-left: auto; | |
margin-right: auto; |