File tree Expand file tree Collapse file tree
src/components/UserManagement Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import React from 'react' ;
2+ import styles from './usermanagement.module.css' ;
23
34const NUMBER_OF_PAGE_LINK = 5 ;
45
@@ -178,7 +179,7 @@ const PageLinkItemComponent = (props) => {
178179 < button
179180 type = "button"
180181 style = { { fontWeight : props . isSelected ? 'bold' : 'normal' } }
181- className = "page-no-link link-button"
182+ className = { ` ${ styles . pageNoLink } ${ styles . linkButton } ` }
182183 onClick = { e => {
183184 e . preventDefault ( ) ;
184185 props . onPageSelect ( props . pageNo ) ;
Original file line number Diff line number Diff line change 205205 display : none;
206206}
207207
208- .pageNoLink {
209- margin-left : 10px ;
210- text-align : center;
211- margin-top : 7px ;
212- }
213-
214208.usermanagementActionsCell {
215209 display : table-cell;
216210 padding-left : 10px ;
220214 background : # e9f6ff ;
221215}
222216
217+ .pageNoLink {
218+ margin-left : 10px ;
219+ text-align : center;
220+ margin-top : 7px ;
221+ }
222+
223223.linkButton {
224224 background-color : transparent;
225225 border : none;
You can’t perform that action at this time.
0 commit comments