6.11.2: Фикс стилей блока особенностей задачи
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m5s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m5s
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "play-life-web",
|
"name": "play-life-web",
|
||||||
"version": "6.11.1",
|
"version": "6.11.2",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
@@ -538,7 +538,7 @@
|
|||||||
.test-field-group {
|
.test-field-group {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 0.25rem;
|
gap: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.test-field-group label {
|
.test-field-group label {
|
||||||
|
|||||||
@@ -1096,7 +1096,7 @@ function TaskForm({ onNavigate, taskId, wishlistId, returnTo, returnWishlistId }
|
|||||||
<div className="task-type-content">
|
<div className="task-type-content">
|
||||||
<div className="test-config-fields">
|
<div className="test-config-fields">
|
||||||
<div className="test-field-group">
|
<div className="test-field-group">
|
||||||
<label htmlFor="words_count">Количество слов *</label>
|
<label htmlFor="words_count">Количество слов</label>
|
||||||
<input
|
<input
|
||||||
id="words_count"
|
id="words_count"
|
||||||
type="number"
|
type="number"
|
||||||
@@ -1121,7 +1121,7 @@ function TaskForm({ onNavigate, taskId, wishlistId, returnTo, returnWishlistId }
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="test-dictionaries-section">
|
<div className="test-dictionaries-section">
|
||||||
<label>Словари *</label>
|
<label>Словари</label>
|
||||||
<div className="test-dictionaries-list">
|
<div className="test-dictionaries-list">
|
||||||
{availableDictionaries.map(dict => (
|
{availableDictionaries.map(dict => (
|
||||||
<label key={dict.id} className="test-dictionary-item">
|
<label key={dict.id} className="test-dictionary-item">
|
||||||
@@ -1153,8 +1153,8 @@ function TaskForm({ onNavigate, taskId, wishlistId, returnTo, returnWishlistId }
|
|||||||
{/* Закупка */}
|
{/* Закупка */}
|
||||||
{isPurchase && (
|
{isPurchase && (
|
||||||
<div className="task-type-content">
|
<div className="task-type-content">
|
||||||
<div style={{ marginTop: '0.5rem' }}>
|
<div>
|
||||||
<label style={{ fontSize: '0.875rem', fontWeight: 500, color: '#374151', marginBottom: '0.5rem', display: 'block' }}>Доски и группы *</label>
|
<label style={{ fontSize: '0.875rem', fontWeight: 500, color: '#374151', marginBottom: '0.5rem', display: 'block' }}>Доски и группы</label>
|
||||||
<div className="test-dictionaries-list">
|
<div className="test-dictionaries-list">
|
||||||
{availableBoards.map(board => (
|
{availableBoards.map(board => (
|
||||||
<div key={board.id}>
|
<div key={board.id}>
|
||||||
|
|||||||
Reference in New Issue
Block a user