Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BOOTSTRAP_MIGRATION_TODO.md « TODO - github.com/2-REC/hugo-myportfolio-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5891bc53a2d469215702ba05a875d702d9fb6d17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

LOOK AT:
https://getbootstrap.com/docs/4.0/migration/

https://getbootstrap.com/docs/4.0/layout/grid/
https://getbootstrap.com/docs/4.0/layout/overview/
https://scotch.io/tutorials/understanding-the-bootstrap-3-grid-system

----

- replace CSS files in static/css
- replace JS files in static/js

- GRID
    - update grid system sizes: (new "sm")
        xs (stays)
        (sm - new)
        sm => md
        md => lg
        lg => xl
	(in: about, contact, services, skills, limage)
    - change CSS rules with "@media"
EG:
@media(min-width:768px) {
TO
@include media-breakpoint-up(md) {


!!!! WHAT ABOUT EM UNITS???? !!!!