File tree Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 5050 transform : rotate (360deg );
5151 }
5252}
53-
54- .palitra-blackOnHover : hover {
55- color : black !important ;
56- }
57-
58- .palitra-blackOnHover {
59- border-color : lightgray !important ;
60- }
61-
62- .palitra-btn : focus {
63- box-shadow : 0 0 0 0.2rem rgb (216 217 219 / 50% ) !important ;
64- }
Original file line number Diff line number Diff line change 11import React , { useState } from 'react'
22import PropTypes from 'prop-types'
33import TextareaAutosize from 'react-textarea-autosize'
4- import Palette , { colors } from './palette'
4+ import Palette , { colors } from './palette/palette '
55
66function useInputValue ( defaultValue ) {
77 const [ value , setValue ] = useState ( defaultValue )
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import TextareaAutosize from 'react-textarea-autosize'
55import Modal , { ModalProps } from "../Shared/Modal/Modal"
66import debounce from '../Shared/debounce'
77import Card from '../Shared/Card'
8- import Palette from './palette'
8+ import Palette from './palette/palette '
99
1010function calcMaxRows ( ) {
1111 const small = 576
Original file line number Diff line number Diff line change 1+ .palitra-blackOnHover : hover {
2+ color : black !important ;
3+ }
4+
5+ .palitra-blackOnHover {
6+ border-color : lightgray !important ;
7+ }
8+
9+ .palitra-btn : focus {
10+ box-shadow : 0 0 0 0.2rem rgb (216 217 219 / 50% ) !important ;
11+ }
Original file line number Diff line number Diff line change 11import React from "react" ;
22import PropTypes from 'prop-types'
3+ import "./palette.css"
34
45export const colors = [
56 "#f8f9fa" ,
You can’t perform that action at this time.
0 commit comments