Skip to content

Commit

Permalink
implemented the old changes
Browse files Browse the repository at this point in the history
  • Loading branch information
prashant67690 committed Sep 28, 2024
1 parent dde72c5 commit be58760
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
1 change: 1 addition & 0 deletions users/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const RDS_API_SKILLS = `${API_BASE_URL}/tags`;
const USER_LIST_ELEMENT = 'user-list';
const HEAD_LIST_ELEMENT = 'head_list';
const LOADER_ELEMENT = 'loader';
const USER_LOADER_ELEMENT = 'loader_tag';
const TILE_VIEW_BTN = 'tile-view-btn';
const TABLE_VIEW_BTN = 'table-view-btn';
const USER_SEARCH_ELEMENT = 'user-search';
Expand Down
17 changes: 16 additions & 1 deletion users/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,12 @@ li p {
white-space: nowrap;
}

.tile-webview {
display: block;
}

.tile-width {
width: 200px;
width: 400px;
}

.error-text {
Expand All @@ -145,10 +149,21 @@ li p {
margin: 150px auto;
}

#loader_tag {
border: 5px solid var(--gray-color);
border-top: 5px solid var(--loader-blue-color);
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 2s linear infinite;
margin: 150px auto;
}

.pagination {
display: flex;
justify-content: space-between;
margin-top: auto;
visibility: hidden;
}

.pagination-btn {
Expand Down

0 comments on commit be58760

Please sign in to comment.