1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00

Remove unrelated CSS changes from PR

This commit is contained in:
symonbaikov 2025-06-07 13:16:16 +03:00
parent e04be9b10e
commit b037ca156c
4 changed files with 14 additions and 32 deletions

View file

@ -89,19 +89,15 @@ const EditStep = React.memo(({ labelId, onBack }) => {
})} })}
</Popup.Header> </Popup.Header>
<Popup.Content> <Popup.Content>
<div className={styles.content}>
<Form onSubmit={handleSubmit}> <Form onSubmit={handleSubmit}>
<Editor data={data} onFieldChange={handleFieldChange} /> <Editor data={data} onFieldChange={handleFieldChange} />
<div className={styles.actions}>
<Button positive content={t('action.save')} className={styles.submitButton} /> <Button positive content={t('action.save')} className={styles.submitButton} />
</Form>
<Button <Button
content={t('action.delete')} content={t('action.delete')}
className={styles.deleteButton} className={styles.deleteButton}
onClick={handleDeleteClick} onClick={handleDeleteClick}
/> />
</div>
</Form>
</div>
</Popup.Content> </Popup.Content>
</> </>
); );

View file

@ -5,14 +5,13 @@
:global(#app) { :global(#app) {
.deleteButton { .deleteButton {
bottom: 12px;
box-shadow: 0 1px 0 #cbcccc; box-shadow: 0 1px 0 #cbcccc;
position: absolute;
right: 9px;
} }
.actions { .submitButton {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 12px; margin-top: 12px;
gap: 12px;
} }
} }

View file

@ -16,8 +16,6 @@
} }
.wrapper { .wrapper {
display: flex;
flex-direction: column;
border-radius: 3px !important; border-radius: 3px !important;
border-width: 0 !important; border-width: 0 !important;
box-shadow: 0 8px 16px -4px rgba(9, 45, 66, 0.25), box-shadow: 0 8px 16px -4px rgba(9, 45, 66, 0.25),
@ -26,13 +24,4 @@
max-height: calc(100% - 70px); max-height: calc(100% - 70px);
padding: 0 12px 12px !important; padding: 0 12px 12px !important;
width: 304px; width: 304px;
overflow: auto;
}
@media (max-width: 900px) {
.wrapper {
width: 95vw;
max-width: 100vw;
max-height: 90vh;
}
} }

View file

@ -227,8 +227,6 @@ module.exports.routes = {
skipAssets: false, skipAssets: false,
}, },
'GET /api/cards/assigned': 'cards/assigned',
'GET /*': { 'GET /*': {
view: 'index', view: 'index',
skipAssets: true, skipAssets: true,