Исправление верстки и JS

remotes/origin/hasaccess
Vitaly Baev 8 years ago
parent 3438d9d6b9
commit ae7fa16060
  1. 4
      web/build/css/app.css
  2. 19128
      web/build/js/app.js
  3. 1
      web/src/js/app.js
  4. 9
      web/src/js/modules/common.js
  5. 4
      web/src/sass/_common.sass

@ -2285,11 +2285,11 @@ a.grey-link:hover {
.select__option.active .select__title:after {
content: '';
position: absolute;
top: 50%;
top: 100%;
left: -10px;
right: -10px;
height: 2px;
margin-top: -2px;
margin-top: 2px;
background-image: linear-gradient(-225deg, #FFE2EB 0%, #D8F5F5 100%);
}

File diff suppressed because it is too large Load Diff

@ -9,4 +9,5 @@ import "./modules/auth";
import "./modules/select";
import "./modules/tabs";
import "./modules/popup";
import "./modules/courses";
import "./modules/comments";

@ -9,14 +9,5 @@ $(document).ready(function () {
}
});
const scroll = new SmoothScroll('a[href*="#"]', {
// Selectors
ignore: '[data-scroll-ignore]', // Selector for links to ignore (must be a valid CSS selector)
header: null, // Selector for fixed headers (must be a valid CSS selector)
// Speed & Easing
speed: 500, // Integer. How fast to complete the scroll in milliseconds
offset: 20, // Integer or Function returning an integer. How far to offset the scrolling anchor location in pixels
easing: 'easeInOutCubic', // Easing pattern to use
});
});

@ -1831,11 +1831,11 @@ a.grey-link
&:after
content: ''
position: absolute
top: 50%
top: 100%
left: -10px
right: -10px
height: 2px
margin-top: -2px
margin-top: 2px
background-image: linear-gradient(-225deg, #FFE2EB 0%, #D8F5F5 100%)
&__title
display: table

Loading…
Cancel
Save