Skip to content

Commit

Permalink
Corrigindo a renderização do CSS.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlepera committed Apr 2, 2019
1 parent d598498 commit 1837e7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dlepera88-php/vilex",
"version": "1.2.2",
"version": "1.2.3",
"license": "MIT",
"authors": [
{"name": "Diego Lepera", "email": "dlepera88@gmail.com"}
Expand Down
2 changes: 1 addition & 1 deletion src/VileX.php
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ public function getTagsCss(): string

if (count($this->getArquivosCss()) > 0) {
$html .= "[ARQUIVOS-CSS]\n";
$html .= "\t<link rel=\"stylesheet\" href=\"" . implode($this->getArquivosCss()) . '">';
$html .= "\t<link rel=\"stylesheet\" href=\"" . implode("\">\n\t<link rel=\"stylesheet\" href=\"", $this->getArquivosCss()) . '">';
$html .= "\n[/ARQUIVOS-CSS]";
}

Expand Down

0 comments on commit 1837e7b

Please sign in to comment.