This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// No media query since this is the default in Bootstrap | |
// Very small devices (tablets, 480px and up) | |
@media (min-width: $screen-xs-min) { | |
} | |
// Small devices (tablets, 768px and up) | |
@media (min-width: $screen-sm-min) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
show databases; | |
SELECT User,Host FROM mysql.user; | |
SHOW GRANTS FOR 'root'@'localhost'; | |
GRANT ALL PRIVILEGES ON * . * TO 'root'@'localhost'; | |
UPDATE mysql.user SET Grant_priv='Y', Super_priv='Y' WHERE User='root'; | |
FLUSH PRIVILEGES; | |
-------- | |
// If you get the error "Access denied for user 'root'@'localhost'" when running the ./setupdb.sh script |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// No media query needed since this is the default in Bootstrap | |
// Small devices (landscape phones, 576px and up) | |
@include media-breakpoint-up(sm) { | |
} | |
// Medium devices (tablets, 768px and up) | |
@include media-breakpoint-up(md) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Small devices (landscape phones, 576px and up) | |
@include media-breakpoint-up(sm) { | |
} | |
// Medium devices (tablets, 768px and up) | |
@include media-breakpoint-up(md) { | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="importmap"> | |
{ | |
"imports": { | |
"@popperjs/core": "https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/esm/popper.min.js", | |
"bootstrap": "https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.esm.min.js" | |
} | |
} | |
</script> | |
<script type="module"> | |
import { Alert, Button, Carousel, Collapse, Dropdown, Modal, Popover, ScrollSpy, Tab, Toast, Tooltip } from 'bootstrap'; |