mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 20:49:23 +00:00
refactor: drop tailwind-merge
This commit is contained in:
@@ -90,16 +90,16 @@ export default function Page() {
|
||||
</PageSection>
|
||||
<div className="flex flex-col gap-3">
|
||||
<PageSection title="Decimal" control={decControl}>
|
||||
<Input value={dec} onChange={onDecChange} />
|
||||
<Input fontMono value={dec} onChange={onDecChange} />
|
||||
</PageSection>
|
||||
<PageSection title="Hexadecimal" control={hexControl}>
|
||||
<Input value={hex} onChange={onHexChange} />
|
||||
<Input fontMono value={hex} onChange={onHexChange} />
|
||||
</PageSection>
|
||||
<PageSection title="Octal" control={octControl}>
|
||||
<Input value={oct} onChange={onOctChange} />
|
||||
<Input fontMono value={oct} onChange={onOctChange} />
|
||||
</PageSection>
|
||||
<PageSection title="Binary" control={binControl}>
|
||||
<Input value={bin} onChange={onBinChange} />
|
||||
<Input fontMono value={bin} onChange={onBinChange} />
|
||||
</PageSection>
|
||||
</div>
|
||||
</PageRootSection>
|
||||
|
||||
@@ -75,25 +75,25 @@ export default function Page() {
|
||||
<div className="flex flex-col gap-3">
|
||||
<PageSection title="MD5">
|
||||
<div className="flex gap-2">
|
||||
<Input className="flex-1" value={md5} readOnly />
|
||||
<Input fontMono className="flex-1" value={md5} readOnly />
|
||||
<ControlMenu list={[md5CopyButton]} />
|
||||
</div>
|
||||
</PageSection>
|
||||
<PageSection title="SHA1">
|
||||
<div className="flex gap-2">
|
||||
<Input className="flex-1" value={sha1} readOnly />
|
||||
<Input fontMono className="flex-1" value={sha1} readOnly />
|
||||
<ControlMenu list={[sha1CopyButton]} />
|
||||
</div>
|
||||
</PageSection>
|
||||
<PageSection title="SHA256">
|
||||
<div className="flex gap-2">
|
||||
<Input className="flex-1" value={sha256} readOnly />
|
||||
<Input fontMono className="flex-1" value={sha256} readOnly />
|
||||
<ControlMenu list={[sha256CopyButton]} />
|
||||
</div>
|
||||
</PageSection>
|
||||
<PageSection title="SHA512">
|
||||
<div className="flex gap-2">
|
||||
<Input className="flex-1" value={sha512} readOnly />
|
||||
<Input fontMono className="flex-1" value={sha512} readOnly />
|
||||
<ControlMenu list={[sha512CopyButton]} />
|
||||
</div>
|
||||
</PageSection>
|
||||
|
||||
@@ -132,12 +132,7 @@ export default function Page() {
|
||||
Generate UUID(s)
|
||||
</Button>
|
||||
<span>×</span>
|
||||
<Input
|
||||
className="w-24 font-sans"
|
||||
type="number"
|
||||
value={generates}
|
||||
onChange={onGeneratesChange}
|
||||
/>
|
||||
<Input className="w-24" type="number" value={generates} onChange={onGeneratesChange} />
|
||||
</div>
|
||||
</PageSection>
|
||||
<PageSection className="-mt-3" title="UUID(s)" control={uuidsControl}>
|
||||
|
||||
Reference in New Issue
Block a user