⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.10
Server IP:
157.245.101.34
Server:
Linux skvinfotech-website 5.4.0-131-generic #147-Ubuntu SMP Fri Oct 14 17:07:22 UTC 2022 x86_64
Server Software:
Apache/2.4.41 (Ubuntu)
PHP Version:
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
skvcomputers.com
/
sass
/
bourbon
/
addons
/
View File Name :
_hide-text.scss
/// Hides the text in an element, commonly used to show an image. Some elements will need block-level styles applied. /// /// @link http://zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement /// /// @example scss - Usage /// .element { /// @include hide-text; /// } /// /// @example css - CSS Output /// .element { /// overflow: hidden; /// text-indent: 101%; /// white-space: nowrap; /// } /// /// @todo Remove height argument in v5.0.0 @mixin hide-text($height: null) { overflow: hidden; text-indent: 101%; white-space: nowrap; @if $height { @warn "The `hide-text` mixin has changed and no longer requires a height. The height argument will no longer be accepted in v5.0.0"; } }