Skip to content

Commit

Permalink
Update ComponentBase.js
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Mar 27, 2024
1 parent 90d1f75 commit 1cb1d5c
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions components/lib/componentbase/ComponentBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ import { ObjectUtils, classNames, mergeProps } from '../utils/Utils';

const baseStyle = `
.p-hidden-accessible {
border: 0 !important;
padding: 0 !important;
margin: -1px !important;
position: absolute !important;
height: 1px !important;
width: 1px !important;
overflow: hidden !important;
clip-path: inset(50%) !important;
white-space: nowrap !important;
border: 0;
padding: 0;
margin: -1px;
position: absolute;
height: 1px;
width: 1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
clip-path: inset(50%);
white-space: nowrap;
}
.p-hidden-accessible input,
Expand Down

0 comments on commit 1cb1d5c

Please sign in to comment.