@wgoudsbloem & @tuffant21
Not sure how you are both set up but I write my styles in Sass, so anytime I hit save, I get a recompiled css stylesheet. If I'm working locally, the change is immediate via live reload (VS Code), if it's on a live site, I have the one extra step of FTPing the new stylesheet (CODA).
So recompiling for me is part of the build process and probably happens thousands of times each project.
Hello! Does anybody know how to remove the border from a navbar? I want to make it fully transparent
Nevermind, assigning it the class z-depth-0
did the trick
trying the same of the sample page:
<head><link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/></head>
<body><div class="chips chips-autocomplete"></div>
<script src="js/jquery-3.4.1.min.js"></script>
<script src="js/materialize.js"></script>
<script type="text/javascript">
$('.chips-autocomplete').chips({
autocompleteOptions: {
data: {
'Apple': null,
'Microsoft': null,
'Android': null,
'Facebook': null,
'Twitter': null,
'Amazon': null,
'Google': null
},
limit: Infinity,
minLength: 1
}
});
</script>
</body>
@CinematicCow this should go part way to demonstrating:
overflow-y: hidden;
yet still the scrollbar appears, the textarea is in another element which is sort of a sidebar and when it overflows height the scrollbar should appear only of the sidebar itself and not the whole document Element.