fix quest positio

This commit is contained in:
Anton 2023-07-22 00:11:30 +02:00
parent d7a216e1d4
commit b1093dcc41
3 changed files with 6 additions and 6 deletions

View File

@ -6,7 +6,7 @@ type ContentProps = {
export function Content({children} : ContentProps) {
return (
<div className='tw-flex tw-flex-col tw-w-full'>
<div className='tw-flex tw-flex-col tw-w-full tw-relative'>
{children}
</div>

View File

@ -5,7 +5,7 @@ export function Quests() {
<>
<input type="checkbox" id="quests" className="tw-modal-toggle" />
<div className="tw-card tw-w-48 tw-bg-base-100 tw-shadow-xl tw-absolute tw-bottom-4 tw-right-4 tw-z-1000">
<div className="tw-card tw-w-48 tw-bg-base-100 tw-shadow-xl tw-absolute tw-bottom-4 tw-left-4 tw-z-1000">
<div className="tw-card-body tw-p-4 tw-pt-0">
<div className="tw-card-actions tw-justify-end">
<label className="tw-btn tw-btn-sm tw-btn-circle tw-btn-ghost tw-absolute tw-right-2 tw-top-2"></label>

View File

@ -26,8 +26,8 @@ export const places = [{
]
export const tags = [
{"id": 9, "name": "Gardening", "color": "#008e5b" },
{"id": 10, "name": "Art", "color": "#fdc60b" },
{"id": 11, "name": "Nature", "color": "#8cbb26" },
{"id": 13, "name": "Market", "color": "#2a71b0" }
{ "id": "Gardening", "color": "#008e5b" },
{ "id": "Art", "color": "#fdc60b" },
{ "id": "Nature", "color": "#8cbb26" },
{ "id": "Market", "color": "#2a71b0" }
]