github.com/Theta-Dev/Talon@v0.0.0-20211018130634-ff179e19fa9a/ui/menu/src/style/mixin.sass (about)

     1  @use "values"
     2  
     3  =placeholder
     4  	::-webkit-input-placeholder
     5  		@content
     6  	::-moz-placeholder
     7  		@content
     8  		opacity: 1
     9  	::-ms-input-placeholder
    10  		@content
    11  
    12  =hideScrollbar
    13  	-ms-overflow-style: none
    14  	scrollbar-width: none
    15  
    16  	&::-webkit-scrollbar
    17  		display: none
    18  
    19  =mobile
    20  	@media screen and (max-width: values.$width-mobile - 1px)
    21  		@content
    22  
    23  =desktop
    24  	@media screen and (min-width: values.$width-mobile)
    25  		@content