* add focus-visible polyfill * remove unnecessary outline: none from styles * make buttons Pin, Block, Delete visible when focused * fix outline of user details close button * close user info by ESC * user info: don't focus the close button
15 lines
224 B
SCSS
15 lines
224 B
SCSS
.input__button {
|
|
box-sizing: border-box;
|
|
margin: 0 8px 0 0;
|
|
padding: 8px 12px;
|
|
font-size: 16px;
|
|
border: 0;
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
|
|
&:disabled {
|
|
opacity: 0.5;
|
|
pointer-events: none;
|
|
}
|
|
}
|