Skip to content

Commit

Permalink
Fixed misspell in class name (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
techieff authored and azouaoui-med committed Nov 30, 2019
1 parent fd403ec commit 6a9c7ba
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions src/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -467,26 +467,26 @@ body {
background-image: url(../img/bg4.jpg); }

/*---- border-radius ------*/
.boder-radius-on .sidebar-header .user-pic {
.border-radius-on .sidebar-header .user-pic {
border-radius: 12px; }

.boder-radius-on .badge {
.border-radius-on .badge {
border-radius: 8px; }

.boder-radius-on .sidebar-menu ul li i {
.border-radius-on .sidebar-menu ul li i {
border-radius: 4px; }

.boder-radius-on .sidebar-footer .dropdown-menu {
.border-radius-on .sidebar-footer .dropdown-menu {
border-top-left-radius: 4px;
border-top-right-radius: 4px; }
.boder-radius-on .sidebar-footer .dropdown-menu .notification-content i,
.boder-radius-on .sidebar-footer .dropdown-menu .message-content .pic {
.border-radius-on .sidebar-footer .dropdown-menu .notification-content i,
.border-radius-on .sidebar-footer .dropdown-menu .message-content .pic {
border-radius: 4px; }

.boder-radius-on .sidebar-search input {
.border-radius-on .sidebar-search input {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px; }

.boder-radius-on .sidebar-search .input-group-append .input-group-text {
.border-radius-on .sidebar-search .input-group-append .input-group-text {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px; }
2 changes: 1 addition & 1 deletion src/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jQuery(function ($) {
// toggle border radius
$("#toggle-border-radius").change(function (e) {
e.preventDefault();
$('.page-wrapper').toggleClass("boder-radius-on");
$('.page-wrapper').toggleClass("border-radius-on");
});

//custom scroll bar is only used on desktop
Expand Down
2 changes: 1 addition & 1 deletion src/sass/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ body {
}

/*---- border-radius ------*/
.boder-radius-on {
.border-radius-on {

.sidebar-header .user-pic {
border-radius: 12px;
Expand Down

0 comments on commit 6a9c7ba

Please sign in to comment.